]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Avoid update conflict out serialization anomalies.
authorPeter Geoghegan <pg@bowt.ie>
Thu, 11 Jun 2020 17:09:45 +0000 (10:09 -0700)
committerPeter Geoghegan <pg@bowt.ie>
Thu, 11 Jun 2020 17:09:45 +0000 (10:09 -0700)
commit6df7105e5d50460623421d00f24aaa46b66fa570
tree73d26e796495c81b0e7584fecca784dd9919d3ab
parentc4d5706db298f5a02ffd321c4605a7f8746b5428
Avoid update conflict out serialization anomalies.

SSI's HeapCheckForSerializableConflictOut() test failed to correctly
handle conditions involving a concurrently inserted tuple which is later
concurrently updated by a separate transaction .  A SELECT statement
that called HeapCheckForSerializableConflictOut() could end up using the
same XID (updater's XID) for both the original tuple, and the successor
tuple, missing the XID of the xact that created the original tuple
entirely.  This only happened when neither tuple from the chain was
visible to the transaction's MVCC snapshot.

The observable symptoms of this bug were subtle.  A pair of transactions
could commit, with the later transaction failing to observe the effects
of the earlier transaction (because of the confusion created by the
update to the non-visible row).  This bug dates all the way back to
commit dafaa3ef, which added SSI.

To fix, make sure that we check the xmin of concurrently inserted tuples
that happen to also have been updated concurrently.

Author: Peter Geoghegan
Reported-By: Kyle Kingsbury
Reviewed-By: Thomas Munro
Discussion: https://postgr.es/m/db7b729d-0226-d162-a126-8a8ab2dc4443@jepsen.io
Backpatch: All supported versions
src/backend/access/heap/heapam.c
src/test/isolation/expected/update-conflict-out.out [new file with mode: 0644]
src/test/isolation/isolation_schedule
src/test/isolation/specs/update-conflict-out.spec [new file with mode: 0644]