pgsql: Fix incorrect checking of deferred exclusion constraint after a

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix incorrect checking of deferred exclusion constraint after a
Дата
Msg-id E1YrqWi-0004A5-MB@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix incorrect checking of deferred exclusion constraint after a HOT update.

If a row that potentially violates a deferred exclusion constraint is
HOT-updated later in the same transaction, the exclusion constraint would
be reported as violated when the check finally occurs, even if the row(s)
the new row originally conflicted with have since been removed.  This
happened because the wrong TID was passed to check_exclusion_constraint(),
causing the live HOT-updated row to be seen as a conflicting row rather
than recognized as the row-under-test.

Per bug #13148 from Evan Martin.  It's been broken since exclusion
constraints were invented, so back-patch to all supported branches.

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/46f9acd3ef90f744e94f11e3de29255ce65ce610

Modified Files
--------------
src/backend/commands/constraint.c          |   17 +++++++++++------
src/test/regress/input/constraints.source  |   10 ++++++++++
src/test/regress/output/constraints.source |   14 ++++++++++++++
3 files changed, 35 insertions(+), 6 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: pgsql: Increase threshold for multixact member emergency autovac to 50%
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix incorrect checking of deferred exclusion constraint after a