pgsql: Fix optimization of foreign-key on update actions

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Fix optimization of foreign-key on update actions
Дата
Msg-id E1h5v15-0001U5-Ay@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Fix optimization of foreign-key on update actions  (Peter Geoghegan <pg@bowt.ie>)
Список pgsql-committers
Fix optimization of foreign-key on update actions

In RI_FKey_pk_upd_check_required(), we check among other things
whether the old and new key are equal, so that we don't need to run
cascade actions when nothing has actually changed.  This was using the
equality operator.  But the effect of this is that if a value in the
primary key is changed to one that "looks" different but compares as
equal, the update is not propagated.  (Examples are float -0 and 0 and
case-insensitive text.)  This appears to violate the SQL standard, and
it also behaves inconsistently if in a multicolumn key another key is
also updated that would cause the row to compare as not equal.

To fix, if we are looking at the PK table in ri_KeysEqual(), then do a
bytewise comparison similar to record_image_eq() instead of using the
equality operators.  This only makes a difference for ON UPDATE
CASCADE, but for consistency we treat all changes to the PK the same.  For
the FK table, we continue to use the equality operators.

Discussion: https://www.postgresql.org/message-id/flat/3326fc2e-bc02-d4c5-e3e5-e54da466e89a@2ndquadrant.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1ffa59a85cb40a61f4523fb03c8960db97eea124

Modified Files
--------------
src/backend/utils/adt/datum.c             | 57 +++++++++++++++++++++++++++++++
src/backend/utils/adt/ri_triggers.c       | 40 +++++++++++++++-------
src/backend/utils/adt/rowtypes.c          | 41 ++--------------------
src/include/utils/datum.h                 |  9 +++++
src/test/regress/expected/foreign_key.out | 34 ++++++++++++++++++
src/test/regress/sql/foreign_key.sql      | 20 +++++++++++
6 files changed, 149 insertions(+), 52 deletions(-)


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Remove unused macro
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Fold vacuum's 'int options' parameter into VacuumParams.