mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Fix pg_dump to handle inherited NOT VALID check constraints correctly.
This case seems to have been overlooked when unvalidated check constraints were introduced, in 9.2. The code would attempt to dump such constraints over again for each child table, even though adding them to the parent table is sufficient. In 9.2 and 9.3, also fix contrib/pg_upgrade/Makefile so that the "make clean" target fully cleans up after a failed test. This evidently got dealt with at some point in 9.4, but it wasn't back-patched. I ran into it while testing this fix ... Per bug #13656 from Ingmar Brouns.
This commit is contained in:
@@ -13214,8 +13214,8 @@ dumpConstraint(Archive *fout, ConstraintInfo *coninfo)
|
||||
{
|
||||
/* CHECK constraint on a table */
|
||||
|
||||
/* Ignore if not to be dumped separately */
|
||||
if (coninfo->separate)
|
||||
/* Ignore if not to be dumped separately, or if it was inherited */
|
||||
if (coninfo->separate && coninfo->conislocal)
|
||||
{
|
||||
/* not ONLY since we want it to propagate to children */
|
||||
appendPQExpBuffer(q, "ALTER TABLE %s\n",
|
||||
|
Reference in New Issue
Block a user