diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2008-10-06 08:04:11 +0000 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2008-10-06 08:04:11 +0000 |
commit | 89f373bf5bc6a9489fd34f2bd8f1dee68af28520 (patch) | |
tree | 8c894b9777f328d2a26daeff628f857ad94dc683 /src/include/storage/indexfsm.h | |
parent | 557faa4fb3a73a5fbe7c6cb703af62d0dcd9e1cf (diff) | |
download | postgresql-89f373bf5bc6a9489fd34f2bd8f1dee68af28520.tar.gz postgresql-89f373bf5bc6a9489fd34f2bd8f1dee68af28520.zip |
Index FSMs needs to be vacuumed as well. Report by Jeff Davis.
Diffstat (limited to 'src/include/storage/indexfsm.h')
-rw-r--r-- | src/include/storage/indexfsm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/storage/indexfsm.h b/src/include/storage/indexfsm.h index 76bb26f7bc8..36872076f87 100644 --- a/src/include/storage/indexfsm.h +++ b/src/include/storage/indexfsm.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/indexfsm.h,v 1.1 2008/09/30 10:52:14 heikki Exp $ + * $PostgreSQL: pgsql/src/include/storage/indexfsm.h,v 1.2 2008/10/06 08:04:11 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -16,12 +16,12 @@ #include "utils/rel.h" -extern void InitIndexFreeSpaceMap(Relation rel); - extern BlockNumber GetFreeIndexPage(Relation rel); extern void RecordFreeIndexPage(Relation rel, BlockNumber page); extern void RecordUsedIndexPage(Relation rel, BlockNumber page); +extern void InitIndexFreeSpaceMap(Relation rel); extern void IndexFreeSpaceMapTruncate(Relation rel, BlockNumber nblocks); +extern void IndexFreeSpaceMapVacuum(Relation rel); #endif /* INDEXFSM_H */ |