]> granicus.if.org Git - postgresql/commit
Prevent synchronized scanning when systable_beginscan chooses a heapscan.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 26 May 2012 23:09:59 +0000 (19:09 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 26 May 2012 23:09:59 +0000 (19:09 -0400)
commit6c1bf45ea50a652d2b8efa778cabb63fdf422e70
tree89ed119f9b93fbac7fe1697e08b695c861b36729
parent71e985a07a7ae9319c00629f319a4c30a9e32fd6
Prevent synchronized scanning when systable_beginscan chooses a heapscan.

The only interesting-for-performance case wherein we force heapscan here
is when we're rebuilding the relcache init file, and the only such case
that is likely to be examining a catalog big enough to be syncscanned is
RelationBuildTupleDesc.  But the early-exit optimization in that code gets
broken if we start the scan at a random place within the catalog, so that
allowing syncscan is actually a big deoptimization if pg_attribute is large
(at least for the normal case where the rows for core system catalogs have
never been changed since initdb).  Hence, prevent syncscan here.  Per my
testing pursuant to complaints from Jeff Frost and Greg Sabino Mullane,
though neither of them seem to have actually hit this specific problem.

Back-patch to 8.3, where syncscan was introduced.
src/backend/access/index/genam.c