diff options
Diffstat (limited to 'src/backend/access/hash/hash.c')
-rw-r--r-- | src/backend/access/hash/hash.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/access/hash/hash.c b/src/backend/access/hash/hash.c index 5ada6b34d87..c1c3cde6fc0 100644 --- a/src/backend/access/hash/hash.c +++ b/src/backend/access/hash/hash.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/hash/hash.c,v 1.70 2004/01/07 18:56:23 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/access/hash/hash.c,v 1.71 2004/02/10 03:42:43 tgl Exp $ * * NOTES * This file contains only the public interface routines. @@ -23,6 +23,7 @@ #include "access/heapam.h" #include "access/xlogutils.h" #include "catalog/index.h" +#include "commands/vacuum.h" #include "executor/executor.h" #include "miscadmin.h" @@ -514,6 +515,8 @@ loop_top: OffsetNumber maxoffno; bool page_dirty = false; + vacuum_delay_point(); + buf = _hash_getbuf(rel, blkno, HASH_WRITE); page = BufferGetPage(buf); _hash_checkpage(rel, page, LH_BUCKET_PAGE | LH_OVERFLOW_PAGE); |