Bug in pg_dump 7.4 - Mailing list pgsql-hackers

From Darko Prenosil
Subject Bug in pg_dump 7.4
Date
Msg-id 200405061538.10203.darko.prenosil@finteh.hr
Whole thread Raw
Responses Re: Bug in pg_dump 7.4  (Rod Taylor <pg@rbt.ca>)
List pgsql-hackers
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)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 ?


Regards !


pgsql-hackers by date:

Previous
From: Shachar Shemesh
Date:
Subject: Re: Multiple "selects" returned from a single stored procedure
Next
From: "Merlin Moncure"
Date:
Subject: Re: ALTER TABLE TODO items