]> granicus.if.org Git - postgresql/commit
Fix overlooked relcache invalidation in ALTER TABLE ... ALTER CONSTRAINT.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 3 May 2015 15:30:24 +0000 (11:30 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 3 May 2015 15:30:24 +0000 (11:30 -0400)
commit79edb298128b00161944b0e2cb6ef2460b717a7a
tree6491317fedcd9d310bd9926be5cc40d880e8620b
parent70fac48446b3966050b73f6461e1404549672a8f
Fix overlooked relcache invalidation in ALTER TABLE ... ALTER CONSTRAINT.

When altering the deferredness state of a foreign key constraint, we
correctly updated the catalogs and then invalidated the relcache state for
the target relation ... but that's not the only relation with relevant
triggers.  Must invalidate the other table as well, or the state change
fails to take effect promptly for operations triggered on the other table.
Per bug #13224 from Christian Ullrich.

In passing, reorganize regression test case for this feature so that it
isn't randomly injected into the middle of an unrelated test sequence.

Oversight in commit f177cbfe676dc2c7ca2b206c54d6bf819feeea8b.  Back-patch
to 9.4 where the faulty code was added.
src/backend/commands/tablecmds.c
src/test/regress/expected/foreign_key.out
src/test/regress/sql/foreign_key.sql