]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix bug in following update chain when locking a heap tuple
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 23 Dec 2025 11:37:16 +0000 (13:37 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 23 Dec 2025 11:37:31 +0000 (13:37 +0200)
commitb6201c76eba4ff01bcdaccfd5324b3e82045f229
treeca47ea3ee1acc15d86e245131adfe7e5deeaf941
parent25a04aa52b528028f679dfb4fac2ea1bb7b3175c
Fix bug in following update chain when locking a heap tuple

After waiting for a concurrent updater to finish, heap_lock_tuple()
followed the update chain to lock all tuple versions. However, when
stepping from the initial tuple to the next one, it failed to check
that the next tuple's XMIN matches the initial tuple's XMAX. That's an
important check whenever following an update chain, and the recursive
part that follows the chain did it, but the initial step missed it.
Without the check, if the updating transaction aborts, the updated
tuple is vacuumed away and replaced by an unrelated tuple, the
unrelated tuple might get incorrectly locked.

Author: Jasper Smit <jasper.smit@servicenow.com>
Discussion: https://www.postgresql.org/message-id/CAOG+RQ74x0q=kgBBQ=mezuvOeZBfSxM1qu_o0V28bwDz3dHxLw@mail.gmail.com
Backpatch-through: 14
src/backend/access/heap/heapam.c