pgsql: Fix incorrect optimization of foreign-key checks.

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix incorrect optimization of foreign-key checks.
Date: 2007-07-17 17:45:40
Message-ID: 20070717174540.83C3C9FBB0F@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix incorrect optimization of foreign-key checks. When an UPDATE on the
referencing table does not change the tuple's FK column(s), we don't bother
to check the PK table since the constraint was presumably already valid.
However, the check is still necessary if the tuple was inserted by our own
transaction, since in that case the INSERT trigger will conclude it need not
make the check (since its version of the tuple has been deleted). We got this
right for simple cases, but not when the insert and update are in different
subtransactions of the current top-level transaction; in such cases the FK
check would never be made at all. (Hence, problem dates back to 8.0 when
subtransactions were added --- it's actually the subtransaction version of a
bug fixed in 7.3.5.) Fix, and add regression test cases. Report and fix by
Affan Salman.

Tags:
----
REL8_2_STABLE

Modified Files:
--------------
pgsql/src/backend/commands:
trigger.c (r1.210.2.2 -> r1.210.2.3)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/trigger.c.diff?r1=1.210.2.2&r2=1.210.2.3)
pgsql/src/test/regress/expected:
foreign_key.out (r1.41 -> r1.41.2.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/foreign_key.out.diff?r1=1.41&r2=1.41.2.1)
pgsql/src/test/regress/sql:
foreign_key.sql (r1.17 -> r1.17.2.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/sql/foreign_key.sql.diff?r1=1.17&r2=1.17.2.1)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2007-07-17 17:45:48 pgsql: Fix incorrect optimization of foreign-key checks.
Previous Message Tom Lane 2007-07-17 17:45:28 pgsql: Fix incorrect optimization of foreign-key checks.