Commit 16e5859c authored by Tom Lane's avatar Tom Lane

Allow free space map vacuuming to be interrupted.

parent 95289e4a
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.74 2010/01/02 16:57:51 momjian Exp $ * $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.75 2010/02/09 00:28:57 tgl Exp $
* *
* *
* NOTES: * NOTES:
...@@ -749,6 +749,8 @@ fsm_vacuum_page(Relation rel, FSMAddress addr, bool *eof_p) ...@@ -749,6 +749,8 @@ fsm_vacuum_page(Relation rel, FSMAddress addr, bool *eof_p)
{ {
int child_avail; int child_avail;
CHECK_FOR_INTERRUPTS();
/* After we hit end-of-file, just clear the rest of the slots */ /* After we hit end-of-file, just clear the rest of the slots */
if (!eof) if (!eof)
child_avail = fsm_vacuum_page(rel, fsm_get_child(addr, slot), &eof); child_avail = fsm_vacuum_page(rel, fsm_get_child(addr, slot), &eof);
......
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