]> granicus.if.org Git - postgresql/commit
index_destroy() must grab exclusive access to the parent table
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 21 Nov 1999 20:01:10 +0000 (20:01 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 21 Nov 1999 20:01:10 +0000 (20:01 +0000)
commit40d3e9254101d23c4f70b95d621277d306c7baf1
treed764a3f9b2da234c77677fb9254f7edab78d83fc
parent3047b444e81946bdc9e6f1b12f9c375e36aff1c9
index_destroy() must grab exclusive access to the parent table
of the index it wants to destroy.  This ensures that no other backend is
actively scanning or updating that index.  Getting exclusive access on
the index alone is NOT sufficient, because the executor is rather
cavalier about getting locks on indexes --- see ExecOpenIndices().
It might be better to grab index locks in the executor, but I'm not
sure the extra lockmanager traffic is really worth it just to make
index_destroy cleaner.
src/backend/catalog/index.c