Commit 9588e1bd authored by Alvaro Herrera's avatar Alvaro Herrera

Add a CHECK_FOR_INTERRUPTS call in the site where the vacuum delay point

was removed.
parent 861f7357
......@@ -36,7 +36,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.93 2007/09/10 21:40:03 alvherre Exp $
* $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.94 2007/09/12 02:05:48 alvherre Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -870,8 +870,10 @@ count_nondeletable_pages(Relation onerel, LVRelStats *vacrelstats)
/*
* We don't insert a vacuum delay point here, because we have an
* exclusive lock on the table which we want to hold for as short
* a time as possible.
* a time as possible. We still need to check for interrupts
* however.
*/
CHECK_FOR_INTERRUPTS();
blkno--;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment