]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix corruption of toast indexes with REINDEX CONCURRENTLY
authorMichael Paquier <michael@paquier.xyz>
Wed, 8 Dec 2021 02:01:19 +0000 (11:01 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 8 Dec 2021 02:01:19 +0000 (11:01 +0900)
commit9acea52ea3d48627f12b9a2b4498197d3b05fe2e
treeac997b9793b7dc9da854a16486fa84882e1fa87c
parent14c54e40f59a741afafa84015681f13ba083eed6
Fix corruption of toast indexes with REINDEX CONCURRENTLY

REINDEX CONCURRENTLY run on a toast index or a toast relation could
corrupt the target indexes rebuilt, as a backend running in parallel
that manipulates toast values would directly release the lock on the
toast relation when its local operation is done, rather than releasing
the lock once the transaction that manipulated the toast values
committed.

The fix done here is simple: we now hold a ROW EXCLUSIVE lock on the
toast relation when saving or deleting a toast value until the
transaction working on them is committed, so as a concurrent reindex
happening in parallel would be able to wait for any activity and see any
new rows inserted (or deleted).

An isolation test is added to check after the case fixed here, which is
a bit fancy by design as it relies on allow_system_table_mods to rename
the toast table and its index to fixed names.  This way, it is possible
to reindex them directly without any dependency on the OID of the
underlying relation.  Note that this could not use a DO block either, as
REINDEX CONCURRENTLY cannot be run in a transaction block.  The test is
backpatched down to 13, where it is possible, thanks to c4a7a39, to use
allow_system_table_mods in a test suite.

Reported-by: Alexey Ermakov
Analyzed-by: Andres Freund, Noah Misch
Author: Michael Paquier
Reviewed-by: Nathan Bossart
Discussion: https://postgr.es/m/17268-d2fb426e0895abd4@postgresql.org
Backpatch-through: 12
src/backend/access/common/toast_internals.c
src/test/isolation/expected/reindex-concurrently-toast.out [new file with mode: 0644]
src/test/isolation/isolation_schedule
src/test/isolation/specs/reindex-concurrently-toast.spec [new file with mode: 0644]