]> granicus.if.org Git - postgresql/commit
Avoid changing an index's indcheckxmin horizon during REINDEX.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 19 Apr 2011 22:51:12 +0000 (18:51 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 19 Apr 2011 22:51:12 +0000 (18:51 -0400)
commit8cf0208b705aebbb23da7fc6a7a20772279bae26
tree7b7a046d9af6e52dc37a19e04f88000400936d6e
parent6c0635d7a4b6daa80745ca8b4c4f4ca3cda797fe
Avoid changing an index's indcheckxmin horizon during REINDEX.

There can never be a need to push the indcheckxmin horizon forward, since
any HOT chains that are actually broken with respect to the index must
pre-date its original creation.  So we can just avoid changing pg_index
altogether during a REINDEX operation.

This offers a cleaner solution than my previous patch for the problem
found a few days ago that we mustn't try to update pg_index while we are
reindexing it.  System catalog indexes will always be created with
indcheckxmin = false during initdb, and with this modified code we should
never try to change their pg_index entries.  This avoids special-casing
system catalogs as the former patch did, and should provide a performance
benefit for many cases where REINDEX formerly caused an index to be
considered unusable for a short time.

Back-patch to 8.3 to cover all versions containing HOT.  Note that this
patch changes the API for index_build(), but I believe it is unlikely that
any add-on code is calling that directly.
src/backend/bootstrap/bootstrap.c
src/backend/catalog/heap.c
src/backend/catalog/index.c
src/backend/commands/cluster.c
src/backend/commands/indexcmds.c
src/include/catalog/index.h