Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit532fe28

Browse files
committed
Prevent synchronized scanning when systable_beginscan chooses a heapscan.
The only interesting-for-performance case wherein we force heapscan hereis when we're rebuilding the relcache init file, and the only such casethat is likely to be examining a catalog big enough to be syncscanned isRelationBuildTupleDesc. But the early-exit optimization in that code getsbroken if we start the scan at a random place within the catalog, so thatallowing syncscan is actually a big deoptimization if pg_attribute is large(at least for the normal case where the rows for core system catalogs havenever been changed since initdb). Hence, prevent syncscan here. Per mytesting 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.
1 parentd3b97d1 commit532fe28

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

‎src/backend/access/index/genam.c

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,16 @@ systable_beginscan(Relation heapRelation,
293293
}
294294
else
295295
{
296-
sysscan->scan=heap_beginscan(heapRelation,snapshot,nkeys,key);
296+
/*
297+
* We disallow synchronized scans when forced to use a heapscan on a
298+
* catalog. In most cases the desired rows are near the front, so
299+
* that the unpredictable start point of a syncscan is a serious
300+
* disadvantage; and there are no compensating advantages, because
301+
* it's unlikely that such scans will occur in parallel.
302+
*/
303+
sysscan->scan=heap_beginscan_strat(heapRelation,snapshot,
304+
nkeys,key,
305+
true, false);
297306
sysscan->iscan=NULL;
298307
}
299308

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp