Reset indisreplident for an invalid index in DROP INDEX CONCURRENTLY
authorMichael Paquier <michael@paquier.xyz>
Sun, 30 Aug 2020 05:14:34 +0000 (14:14 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sun, 30 Aug 2020 05:14:34 +0000 (14:14 +0900)
commit9511fb37ac78c77736e5483118265f7e83cd9f3c
tree315712385aad03a0cab21bf986db34e197fe88de
parent7a1cd5260aa20bc13aec8960a57904b5623d1830
Reset indisreplident for an invalid index in DROP INDEX CONCURRENTLY

A failure when dropping concurrently an index used in a replica identity
could leave in pg_index an index marked as !indisvalid and
indisreplident.  Reindexing this index would switch back indisvalid to
true, and if the replica identity of the parent relation was switched to
use a different index, it would be possible to finish with more than one
index marked as indisreplident.  If that were to happen, this could mess
up with the relation cache as an incorrect index could be used for the
replica identity.

Indexes marked as invalid are discarded as candidates for the replica
identity, as of RelationGetIndexList(), so similarly to what is done
with indisclustered, resetting indisreplident when the index is marked
as invalid keeps things consistent.  REINDEX CONCURRENTLY's swapping
already resets the flag for the old index, while the new index inherits
the value of the old index to-be-dropped, so only DROP INDEX was an
issue.

Even if this is a bug, the sequence able to reproduce a problem requires
a failure while running DROP INDEX CONCURRENTLY, something unlikely
going to happen in the field, so no backpatch is done.

Author: Michael Paquier
Reviewed-by: Dmitry Dolgov
Discussion: https://postgr.es/m/20200827025721.GN2017@paquier.xyz
src/backend/catalog/index.c