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

Commitbcc93a3

Browse files
committed
Fix race in SSI interaction with bitmap heap scan.
When performing a bitmap heap scan, we don't want to miss concurrentwrites that occurred after we observed the heap's rs_nblocks, but beforewe took predicate locks on index pages. Therefore, we can't skipfetching any heap tuples that are referenced by the index, because weneed to test them all with CheckForSerializableConflictOut(). Theold optimization that would ignore any references to blocks >=rs_nblocks gets in the way of that requirement, because it means thatconcurrent writes in that window are ignored.Removing that optimization shouldn't affect correctness at any isolationlevel, because any new tuples shouldn't be visible to an MVCC snapshot.There also shouldn't be any error-causing references to heap blocks pastthe end, because we should have held at least an AccessShareLock on thetable before the index scan. It can't get smaller while our transactionis running. For now, though, we'll keep the optimization at lowerlevels to avoid making unnecessary changes in a bug fix.Back-patch to all supported releases. In release 11, the code is in adifferent place but not fundamentally different. Fixes one aspect ofbug #17949.Reported-by: Artem Anisimov <artem.anisimov.255@gmail.com>Reviewed-by: Dmitry Dolgov <9erthalion6@gmail.com>Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>Discussion:https://postgr.es/m/17949-a0f17035294a55e2%40postgresql.org
1 parentf9b7fc6 commitbcc93a3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎src/backend/access/heap/heapam_handler.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2132,9 +2132,11 @@ heapam_scan_bitmap_next_block(TableScanDesc scan,
21322132
* Ignore any claimed entries past what we think is the end of the
21332133
* relation. It may have been extended after the start of our scan (we
21342134
* only hold an AccessShareLock, and it could be inserts from this
2135-
* backend).
2135+
* backend). We don't take this optimization in SERIALIZABLE isolation
2136+
* though, as we need to examine all invisible tuples reachable by the
2137+
* index.
21362138
*/
2137-
if (block >=hscan->rs_nblocks)
2139+
if (!IsolationIsSerializable()&&block >=hscan->rs_nblocks)
21382140
return false;
21392141

21402142
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp