Bug in pg_dump 7.4

From: Darko Prenosil <darko(dot)prenosil(at)finteh(dot)hr>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Bug in pg_dump 7.4
Date: 2004-05-06 13:38:10
Message-ID: 200405061538.10203.darko.prenosil@finteh.hr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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 !

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Merlin Moncure 2004-05-06 13:50:52 Re: ALTER TABLE TODO items
Previous Message Shachar Shemesh 2004-05-06 13:36:40 Re: Multiple "selects" returned from a single stored procedure