Re: [BUGS] pgDump sequence dump bug

2001-03-12 Thread Tom Lane
"Primoz" <[EMAIL PROTECTED]> writes: > If I try to dump database with sequences which have "Uppercase" names it > dumps it like this: > CREATE SEQUENCE "Uppercase"; > CREATE TABLE "Table" ( > "ID" int4 not null default nextval('Uppercase':something), > ); This is fixed in 7.1. I don't think th

[BUGS] pgDump sequence dump bug

2001-03-12 Thread Primoz
I think there is a bug in pgDump.. If I try to dump database with sequences which have "Uppercase" names it dumps it like this: CREATE SEQUENCE "Uppercase"; CREATE TABLE "Table" ( "ID" int4 not null default nextval('Uppercase':something), ); And it do not work until I manualy change it to CRE