]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix assertions with RI triggers in heap_update and heap_delete.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 28 Nov 2023 09:59:09 +0000 (11:59 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 28 Nov 2023 09:59:53 +0000 (11:59 +0200)
commitb8a606e21b0619ac378558bdd258c54aee7cb4ed
tree2442ab30aea3b5f8df22e4f4c905534982306dc8
parenta5e95ff46f58c1aa15760ee3b2aa074f695f53d1
Fix assertions with RI triggers in heap_update and heap_delete.

If the tuple being updated is not visible to the crosscheck snapshot,
we return TM_Updated but the assertions would not hold in that case.
Move them to before the cross-check.

Fixes bug #17893. Backpatch to all supported versions.

Author: Alexander Lakhin
Backpatch-through: 12
Discussion: https://www.postgresql.org/message-id/17893-35847009eec517b5%40postgresql.org
src/backend/access/heap/heapam.c
src/include/access/tableam.h