BUG #16214: Settings is not copy

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #16214: Settings is not copy
Дата
Msg-id 16214-aee287cfd82762b4@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #16214: Settings is not copy  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      16214
Logged by:          Michail Shurutov
Email address:      shurutov@gmail.com
PostgreSQL version: 11.6
Operating system:   Gentoo, RHEL
Description:

I downloaded and ulpoaded into local PostgreSQL instance demo database from
Postgres Professional: https://postgrespro.ru/education/demodb
Than I made copy as "CREATE DATABASE demo_small template demo", after this I
noticed:
postgres=# \c demo
   
You are now connected to database "demo" as user "postgres".
   
demo=# select name,setting from pg_settings where name = 'search_path';
   
    name     |     setting
   
-------------+------------------
   
 search_path | bookings, public
   
(1 row)
   

   
demo=# \c demo_small
   
You are now connected to database "demo_small" as user "postgres".
   
demo_small=# select name,setting from pg_settings where name =
'search_path';   
    name     |     setting
   
-------------+-----------------
   
 search_path | "$user", public
   
(1 row)
   

   
demo_small=# \q

Parameter "search_path" was not copied.

And command "ALTER DATABASE" was not in included into dump made by
pg_dump:
mshurutov@desktop fromarch $ sudo -u postgres pg_dump -C demo_small >
/var/tmp/demo_small.sql
mshurutov@desktop fromarch $ grep "ALTER DATABASE" demo-small-20170815.sql
ALTER DATABASE demo SET search_path = bookings, public;
ALTER DATABASE demo SET bookings.lang = ru;
mshurutov@desktop fromarch $ grep "ALTER DATABASE" /var/tmp/demo_small.sql

ALTER DATABASE demo_small OWNER TO postgres;
mshurutov@desktop fromarch $


В списке pgsql-bugs по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #16213: segfault when running a query
Следующее
От: Tom Lane
Дата:
Сообщение: Re: SQL/PostgreSQL - Error observed in the QUERY not caught by the “EXCEPTION” block in the stored procedure