diff options
author | Noah Misch <noah@leadboat.com> | 2021-10-23 18:36:38 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2021-10-23 18:36:42 -0700 |
commit | dde966efb286ddc222f17013a8cf4561a3b67a5e (patch) | |
tree | ce01ba949b264cd854361d23ce4814bfc9768b29 /src/include/utils/relcache.h | |
parent | affec9f6a2dec174b333b8d4c43948af9d825b46 (diff) |
Avoid race in RelationBuildDesc() affecting CREATE INDEX CONCURRENTLY.
CIC and REINDEX CONCURRENTLY assume backends see their catalog changes
no later than each backend's next transaction start. That failed to
hold when a backend absorbed a relevant invalidation in the middle of
running RelationBuildDesc() on the CIC index. Queries that use the
resulting index can silently fail to find rows. Fix this for future
index builds by making RelationBuildDesc() loop until it finishes
without accepting a relevant invalidation. It may be necessary to
reindex to recover from past occurrences; REINDEX CONCURRENTLY suffices.
Back-patch to 9.6 (all supported versions).
Noah Misch and Andrey Borodin, reviewed (in earlier versions) by Andres
Freund.
Discussion: https://postgr.es/m/20210730022548.GA1940096@gust.leadboat.com
Diffstat (limited to 'src/include/utils/relcache.h')
-rw-r--r-- | src/include/utils/relcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/relcache.h b/src/include/utils/relcache.h index d2c17575f65..aa060ef115b 100644 --- a/src/include/utils/relcache.h +++ b/src/include/utils/relcache.h @@ -122,7 +122,7 @@ extern void RelationForgetRelation(Oid rid); extern void RelationCacheInvalidateEntry(Oid relationId); -extern void RelationCacheInvalidate(void); +extern void RelationCacheInvalidate(bool debug_discard); extern void RelationCloseSmgrByOid(Oid relationId); |