summaryrefslogtreecommitdiff
path: root/src/include/access
diff options
context:
space:
mode:
authorBruce Momjian2006-07-11 13:54:25 +0000
committerBruce Momjian2006-07-11 13:54:25 +0000
commitb85a965f5fc7243d0386085e12f7a6c836503b42 (patch)
tree659ff5b830aa754b70dbde857d3597d356409c42 /src/include/access
parent45a43090748331134d57bc2b74e918b188f34f3a (diff)
Allow each C include file to compile on its own by including any needed
header files.
Diffstat (limited to 'src/include/access')
-rw-r--r--src/include/access/gin.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/access/gin.h b/src/include/access/gin.h
index de3100c4cae..c13d726aa91 100644
--- a/src/include/access/gin.h
+++ b/src/include/access/gin.h
@@ -3,7 +3,7 @@
* header file for postgres inverted index access method implementation.
*
* Copyright (c) 2006, PostgreSQL Global Development Group
- * $PostgreSQL: pgsql/src/include/access/gin.h,v 1.3 2006/07/03 22:45:39 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/access/gin.h,v 1.4 2006/07/11 13:54:24 momjian Exp $
*--------------------------------------------------------------------------
*/
@@ -11,6 +11,8 @@
#ifndef GIN_H
#define GIN_H
+#include "access/relscan.h"
+#include "access/skey.h"
#include "access/xlog.h"
#include "access/xlogdefs.h"
#include "storage/bufpage.h"
@@ -385,7 +387,7 @@ extern Datum ginendscan(PG_FUNCTION_ARGS);
extern Datum ginrescan(PG_FUNCTION_ARGS);
extern Datum ginmarkpos(PG_FUNCTION_ARGS);
extern Datum ginrestrpos(PG_FUNCTION_ARGS);
-extern void newScanKey( IndexScanDesc scan );
+extern void newScanKey(IndexScanDesc scan);
/* ginget.c */
extern DLLIMPORT int GinFuzzySearchLimit;