Fixes for 3 bugs in pg_dump

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Fixes for 3 bugs in pg_dump
Дата
Msg-id 40F4CF4F.8010304@familyhealth.com.au
обсуждение исходный текст
Ответы Re: Fixes for 3 bugs in pg_dump  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Список pgsql-patches
This patch fixes the following bugs:

* pg_dump --clean against a pre-7.3 server output drop commands in the
form: DROP "".foo; .  These will now all be output as: DROP public.foo;

* If you use ALTER USER to set user params on the cluster owner user,
these would not be dumped.  This patch will now dump ALTER USER commands
for the cluster owner.  If the -S command line switch is used to specify
a superuser, then the cluster owner ALTER USER commands will be dumped
for that user instead.

* The DateStyle and search_path GUC variables must not be quoted when
dumped.

Chris


Вложения

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: PITR Archive Recovery plus WIP PITR
Следующее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: Fixes for 3 bugs in pg_dump