aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2012-05-26 19:10:13 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2012-05-26 19:10:13 -0400
commit35cc2be6f41f1cb0df2a75dc82fe7ee62343f69b (patch)
treea06da665497ac5923c6357bff51aecee24cd382c
parent2a7c90c83bc5b668764faae643b9f3d8c652667a (diff)
downloadpostgresql-35cc2be6f41f1cb0df2a75dc82fe7ee62343f69b.tar.gz
postgresql-35cc2be6f41f1cb0df2a75dc82fe7ee62343f69b.zip
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.
-rw-r--r--src/backend/access/index/genam.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/backend/access/index/genam.c b/src/backend/access/index/genam.c
index a79c3920713..5662bb01088 100644
--- a/src/backend/access/index/genam.c
+++ b/src/backend/access/index/genam.c
@@ -217,7 +217,16 @@ systable_beginscan(Relation heapRelation,
}
else
{
- sysscan->scan = heap_beginscan(heapRelation, snapshot, nkeys, key);
+ /*
+ * We disallow synchronized scans when forced to use a heapscan on a
+ * catalog. In most cases the desired rows are near the front, so
+ * that the unpredictable start point of a syncscan is a serious
+ * disadvantage; and there are no compensating advantages, because
+ * it's unlikely that such scans will occur in parallel.
+ */
+ sysscan->scan = heap_beginscan_strat(heapRelation, snapshot,
+ nkeys, key,
+ true, false);
sysscan->iscan = NULL;
}