Re: Bug with foreign keys and importing from a pg_dump file?
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: mdavis@sevainc.com
Cc: Philip Warner <pjw@rhyme.com.au>, pgsql-bugs@postgresql.org
Date: 2001-01-27T07:09:21Z
Lists: pgsql-bugs
Michael Davis <mdavis@sevainc.com> writes: > Is there a bug with importing from a pg_dump file and foreign keys? If I > create two tables where one table has a foreign key relationship to the > other and look at the system tables everything looks great. If I then > pg_dump, dropdb, createdb, and import the dump file, then the system tables > are reporting the foreign key differently. It looks like pg_dump neglects to emit a "FROM pktable" clause in its CREATE CONSTRAINT TRIGGER commands, and so the tgconstrrelid field of pg_trigger is not restored. This is a bug I think, although the side effects appear to be minor... regards, tom lane