diff options
author | Noah Misch <noah@leadboat.com> | 2021-01-30 00:00:27 -0800 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2021-01-30 00:04:05 -0800 |
commit | d683d6528dba56669f24e5fac85c7692fc9ffd43 (patch) | |
tree | 785f53555d920df1aacb1c6ce96dd6e1a5ca3790 /src/backend/storage/lmgr/lmgr.c | |
parent | ea3164aae4b2d2edfb1dc3bd450bfed86d3266ea (diff) | |
download | postgresql-d683d6528dba56669f24e5fac85c7692fc9ffd43.tar.gz postgresql-d683d6528dba56669f24e5fac85c7692fc9ffd43.zip |
Fix CREATE INDEX CONCURRENTLY for simultaneous prepared transactions.
In a cluster having used CREATE INDEX CONCURRENTLY while having enabled
prepared transactions, queries that use the resulting index can silently
fail to find rows. Fix this for future CREATE INDEX CONCURRENTLY by
making it wait for prepared transactions like it waits for ordinary
transactions. This expands the VirtualTransactionId structure domain to
admit prepared transactions. It may be necessary to reindex to recover
from past occurrences. Back-patch to 9.5 (all supported versions).
Andrey Borodin, reviewed (in earlier versions) by Tom Lane and Michael
Paquier.
Discussion: https://postgr.es/m/2E712143-97F7-4890-B470-4A35142ABC82@yandex-team.ru
Diffstat (limited to 'src/backend/storage/lmgr/lmgr.c')
-rw-r--r-- | src/backend/storage/lmgr/lmgr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/storage/lmgr/lmgr.c b/src/backend/storage/lmgr/lmgr.c index 7b87002d7ce..f049f26ca96 100644 --- a/src/backend/storage/lmgr/lmgr.c +++ b/src/backend/storage/lmgr/lmgr.c @@ -846,8 +846,7 @@ WaitForLockersMultiple(List *locktags, LOCKMODE lockmode) /* * Note: GetLockConflicts() never reports our own xid, hence we need not - * check for that. Also, prepared xacts are not reported, which is fine - * since they certainly aren't going to do anything anymore. + * check for that. Also, prepared xacts are reported and awaited. */ /* Finally wait for each such transaction to complete */ |