diff options
Diffstat (limited to 'src/include/storage/indexfsm.h')
-rw-r--r-- | src/include/storage/indexfsm.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/storage/indexfsm.h b/src/include/storage/indexfsm.h index d09732f5abe..828aaab45e9 100644 --- a/src/include/storage/indexfsm.h +++ b/src/include/storage/indexfsm.h @@ -7,14 +7,15 @@ * 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.3 2008/11/19 10:34:52 heikki Exp $ + * $PostgreSQL: pgsql/src/include/storage/indexfsm.h,v 1.4 2008/12/12 22:56:00 alvherre Exp $ * *------------------------------------------------------------------------- */ #ifndef INDEXFSM_H_ #define INDEXFSM_H_ -#include "utils/rel.h" +#include "storage/block.h" +#include "utils/relcache.h" extern BlockNumber GetFreeIndexPage(Relation rel); extern void RecordFreeIndexPage(Relation rel, BlockNumber page); @@ -22,4 +23,4 @@ extern void RecordUsedIndexPage(Relation rel, BlockNumber page); extern void IndexFreeSpaceMapVacuum(Relation rel); -#endif /* INDEXFSM_H */ +#endif /* INDEXFSM_H_ */ |