![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
Not sure if this is a bug, but still. ![]() pgsql7.3.4$ pg_dump -a -t seq_wtmp db1 [ works ] pgsql7.4beta3$ pg_dump -a -t seq_wtmp db1 pg_dump: specified table "seq_wtmp" does not exist |
#3
| |||
| |||
|
|
/* * If the user is attempting to dump a specific table, check to ensure * that the specified table actually exists (and is a table or a view, * not a sequence). */ if (selectTableName) { for (i = 0; i < ntups; i++) if (strcmp(tblinfo[i].relname, selectTableName) == 0 && tblinfo[i].relkind != 'S') break; Neil, what's the reason not to allow dumping just a sequence? |
![]() |
| Thread Tools | |
| Display Modes | |
| |