Re: [HACKERS] Bug in pg_dump 7.4

2004-05-06 Thread Darko Prenosil
ssage - From: "Bruno Wolff III" <[EMAIL PROTECTED]> To: "Rod Taylor" <[EMAIL PROTECTED]> Cc: "Darko Prenosil" <[EMAIL PROTECTED]>; "PostgreSQL Development" <[EMAIL PROTECTED]> Sent: Thursday, May 06, 2004 6:41 PM Subject: Re: [H

Re: [HACKERS] Bug in pg_dump 7.4

2004-05-06 Thread Bruno Wolff III
On Thu, May 06, 2004 at 10:17:31 -0400, Rod Taylor <[EMAIL PROTECTED]> wrote: > > CREATE DOMAIN doc_ident AS bigint NOT NULL DEFAULT > > nextval('doc.seq_doc_id'::text) > > CONSTRAINT cnst_chk_doc_id CHECK ( fn_chk_doc_id(VALUE) ) ; > > > > I did not notice any similar error report on the

Re: [HACKERS] Bug in pg_dump 7.4

2004-05-06 Thread Tom Lane
Rod Taylor <[EMAIL PROTECTED]> writes: >> CREATE DOMAIN doc_ident AS bigint NOT NULL DEFAULT >> nextval('doc.seq_doc_id'::text) >> CONSTRAINT cnst_chk_doc_id CHECK ( fn_chk_doc_id(VALUE) ) ; > It comes out right for me in 7.4.2. AFAICT the relevant fix was well before 7.4 release: 2003-10-04 1

Re: [HACKERS] Bug in pg_dump 7.4

2004-05-06 Thread Rod Taylor
> CREATE DOMAIN doc_ident AS bigint NOT NULL DEFAULT > nextval('doc.seq_doc_id'::text) > CONSTRAINT cnst_chk_doc_id CHECK ( fn_chk_doc_id(VALUE) ) ; > > I did not notice any similar error report on the list, so I believe that this > is not fixed yet ? It comes out right for me in 7.4.2.

[HACKERS] Bug in pg_dump 7.4

2004-05-06 Thread Darko Prenosil
Part of dump file: CREATE DOMAIN doc_ident AS bigint NOT NULL DEFAULT nextval('doc.seq_doc_id'::text) CONSTRAINT cnst_chk_doc_id CHECK fn_chk_doc_id(VALUE); It should look like this: CREATE DOMAIN doc_ident AS bigint NOT NULL DEFAULT nextval('doc.seq_doc_id'::text) CONSTRAIN