8000 Ensure that seqscans check for interrupts at least once per page. · jcsston/postgres@c676f83 · GitHub
[go: up one dir, main page]

Skip to content

Commit c676f83

Browse files
committed
Ensure that seqscans check for interrupts at least once per page.
If a seqscan encounters many consecutive pages containing only dead tuples, it can remain in the loop in heapgettup for a long time, and there was no CHECK_FOR_INTERRUPTS anywhere in that loop. This meant there were real-world situations where a query would be effectively uncancelable for long stretches. Add a check placed to occur once per page, which should be enough to provide reasonable response time without adding any measurable overhead. Report and patch by Merlin Moncure (though I tweaked it a bit). Back-patch to all supported branches.
1 parent 26d73dd commit c676f83

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/backend/access/heap/heapam.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,13 @@ heapgetpage(HeapScanDesc scan, BlockNumber page)
218218
scan->rs_cbuf = InvalidBuffer;
219219
}
220220

221+
/*
222+
* Be sure to check for interrupts at least once per page. Checks at
223+
* higher code levels won't be able to stop a seqscan that encounters
224+
* many pages' worth of consecutive dead tuples.
225+
*/
226+
CHECK_FOR_INTERRUPTS();
227+
221228
/* read page using selected strategy */
222229
scan->rs_cbuf = ReadBufferExtended(scan->rs_rd, MAIN_FORKNUM, page,
223230
RBM_NORMAL, scan->rs_strategy);

0 commit comments

Comments
 (0)
0