summaryrefslogtreecommitdiff
path: root/src/include/storage/indexfsm.h
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2008-12-12 22:56:00 +0000
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2008-12-12 22:56:00 +0000
commit0f864a63ea532a475490d4259608385ad717280c (patch)
tree5353083a4a608b4ed50614b802ea3eb286c77e54 /src/include/storage/indexfsm.h
parent192dd845a118cf285523e968660135c6a95afdca (diff)
downloadpostgresql-0f864a63ea532a475490d4259608385ad717280c.tar.gz
Reduce some rel.h inclusions, and add pg_list.h to pg_proc_fn.h.
Diffstat (limited to 'src/include/storage/indexfsm.h')
-rw-r--r--src/include/storage/indexfsm.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/storage/indexfsm.h b/src/include/storage/indexfsm.h
index d09732f5ab..828aaab45e 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_ */