Re: UUID generation problem - Mailing list pgsql-general

From James B. Byrne
Subject Re: UUID generation problem
Date
Msg-id 5ddb4d5509945a2daf8b26f403810101.squirrel@webmail.harte-lyne.ca
Whole thread Raw
In response to Re: UUID generation problem  (Paul Förster <paul.foerster@gmail.com>)
Responses Re: UUID generation problem  (Paul Förster <paul.foerster@gmail.com>)
List pgsql-general

On Mon, October 5, 2020 12:19, Paul Förster wrote:
>
> just out of curiosity, what does the search_path contain? It needs not
> necessarily reflect the contents of current_schemas, see the following example:
>
> postgres=# select current_schemas(true);
>        current_schemas
> ------------------------------
>  {pg_catalog,postgres,public}
> (1 row)
>
> postgres=# select current_schemas(false);
>   current_schemas
> -------------------
>  {postgres,public}
> (1 row)
>
> postgres=# show search_path;
>    search_path
> -----------------
>  "$user", public
> (1 row)
>
> Cheers,
> Paul

[root@accounting-2 ~ (master)]#  psql --dbname=idempiere
--username=idempiere_dbadmin --host=localhost
Password for user idempiere_dbadmin:
psql (11.8)
Type "help" for help.

idempiere=# select current_schemas(true);
    current_schemas
------------------------
 {adempiere,pg_catalog}
(1 row)

idempiere=# select current_schemas(false);
    current_schemas
------------------------
 {adempiere,pg_catalog}
(1 row)


idempiere=# show search_path;
      search_path
-----------------------
 adempiere, pg_catalog
(1 row)


-- 
***          e-Mail is NOT a SECURE channel          ***
        Do NOT transmit sensitive data via e-Mail
   Unencrypted messages have no legal claim to privacy
 Do NOT open attachments nor follow links sent by e-Mail

James B. Byrne                mailto:ByrneJB@Harte-Lyne.ca
Harte & Lyne Limited          http://www.harte-lyne.ca
9 Brockley Drive              vox: +1 905 561 1241
Hamilton, Ontario             fax: +1 905 561 0757
Canada  L8E 3C3




pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: UUID generation problem
Next
From: "James B. Byrne"
Date:
Subject: Re: UUID generation problem