Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / storage / indexfsm.h
blobc5c6170f31b4cc8c139f331f3eb6d7f886fea4a2
1 /*-------------------------------------------------------------------------
3 * indexfsm.h
4 * POSTGRES free space map for quickly finding an unused page in index
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef INDEXFSM_H_
15 #define INDEXFSM_H_
17 #include "utils/rel.h"
19 extern BlockNumber GetFreeIndexPage(Relation rel);
20 extern void RecordFreeIndexPage(Relation rel, BlockNumber page);
21 extern void RecordUsedIndexPage(Relation rel, BlockNumber page);
23 extern void IndexFreeSpaceMapVacuum(Relation rel);
25 #endif /* INDEXFSM_H */