This is a discussion on BUG #2307: Buckup and sequences in DEFAULT part within the pgsql Bugs forums, part of the PostgreSQL category; --> The following bug has been logged online: Bug reference: 2307 Logged by: Giza Kamil Email address: kamilg@zeto.olsztyn.pl PostgreSQL version: ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| The following bug has been logged online: Bug reference: 2307 Logged by: Giza Kamil Email address: kamilg@zeto.olsztyn.pl PostgreSQL version: 8.1.3 Operating system: Windows,Linux Description: Buckup and sequences in DEFAULT part Details: Hi! My script is: CREATE SEQUENCE schema.seq_taid; CREATE TABLE schema.tab1(ID integer DEFAULT nextval('schema.seq_taid')); After runing on server I have: CREATE TABLE schema.tab1(ID integer DEFAULT nextval('schema.seq_taid'::regclass)); but on 8.0 version was CREATE TABLE schema.tab1(ID integer DEFAULT nextval(('schema.seq_taid'::text)::regclass)); Buckups on 8.0 were OK, but on 8.1 I'm getting samething like that: CREATE TABLE schema.tab1(ID integer DEFAULT nextval('seq_taid'::regclass)); Buckup cat schema name from sequence name in function nextval in DEFAULT part. Problem exists in buckups in PgAdmin and pg_buckup from command line on server. Is there any kind of solution for that or I have to wait for next version. It's a very important for me to resolve this problem as quickly as possible. Best regards, Kamil Giza ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| ||||
| "Giza Kamil" <kamilg@zeto.olsztyn.pl> writes: > Buckups on 8.0 were OK, but on 8.1 I'm getting samething like that: > CREATE TABLE schema.tab1(ID integer DEFAULT nextval('seq_taid'::regclass)); You haven't said why you think this is a problem. The dump is perfectly valid AFAICS. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |
| Thread Tools | |
| Display Modes | |
|
|