Re: Major Problems with pg_dump

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Major Problems with pg_dump
Дата
Msg-id 1701.1105466236@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Major Problems with pg_dump  (KÖPFERL Robert <robert.koepferl@sonorys.at>)
Список pgsql-novice
=?iso-8859-1?Q?K=D6PFERL_Robert?= <robert.koepferl@sonorys.at> writes:
> Here's one example.

> We have a cdr_type in line 64
> CREATE TYPE cdr_type AS (
> ...
>     "Charge" charge_type,
> ...
> );

> while charge_type gets defined in line 86:

> CREATE DOMAIN charge_type AS numeric(9,4)
>     CONSTRAINT "$1" CHECK ((VALUE >= (0)::numeric));

Ah --- it was missing the dependency in this case, and ordering the
types by name by default.  Fixed; thanks for the report!

            regards, tom lane

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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Major Problems with pg_dump
Следующее
От: "Keith Worthington"
Дата:
Сообщение: DELETE & INSERT in a function