aboutsummaryrefslogtreecommitdiff
path: root/src/include/storage/indexfsm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/storage/indexfsm.h')
-rw-r--r--src/include/storage/indexfsm.h6
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 */