postgresql/src/backend/access
Heikki Linnakangas 1169fcf129 Fix predicate-locking of HOT updated rows.
In serializable mode, heap_hot_search_buffer() incorrectly acquired a
predicate lock on the root tuple, not the returned tuple that satisfied
the visibility checks. As explained in README-SSI, the predicate lock does
not need to be copied or extended to other tuple versions, but for that to
work, the correct, visible, tuple version must be locked in the first
place.

The original SSI commit had this bug in it, but it was fixed back in 2013,
in commit 81fbbfe335. But unfortunately, it was reintroduced a few months
later in commit b89e151054. Wising up from that, add a regression test
to cover this, so that it doesn't get reintroduced again. Also, move the
code that sets 't_self', so that it happens at the same time that the
other HeapTuple fields are set, to make it more clear that all the code in
the loop operate on the "current" tuple in the chain, not the root tuple.

Bug spotted by Andres Freund, analysis and original fix by Thomas Munro,
test case and some additional changes to the fix by Heikki Linnakangas.
Backpatch to all supported versions (9.4).

Discussion: https://www.postgresql.org/message-id/20190731210630.nqhszuktygwftjty%40alap3.anarazel.de
2019-08-07 12:40:49 +03:00
..
brin Fix many typos and inconsistencies 2019-07-01 10:00:23 +09:00
common Fix inconsistencies and typos in the tree 2019-07-29 12:28:30 +09:00
gin Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
gist Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
hash Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
heap Fix predicate-locking of HOT updated rows. 2019-08-07 12:40:49 +03:00
index Fix inconsistencies and typos in the tree 2019-07-22 10:01:50 +09:00
nbtree Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
rmgrdesc Use full 64-bit XID for checking if a deleted GiST page is old enough. 2019-07-24 20:24:07 +03:00
spgist Fix inconsistencies and typos in the tree 2019-07-29 12:28:30 +09:00
table tableam: Provide helper functions for relation sizing. 2019-07-08 14:51:53 -04:00
tablesample Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
transam Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
Makefile Introduce access/{table.h, relation.h}, for generic functions from heapam.h. 2019-01-21 10:51:36 -08:00