aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-31 08:09:47 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-31 08:09:47 +0000
commitea04818002b9280e105c9307f31f7d7063d1019c (patch)
treea04caf22571cc9757378cf19c0107f216e7b9506 /src/backend/access/gist
parentba4ad2c71a23e234a30ca39c94f3a10c7614e1d9 (diff)
downloadpostgresql-ea04818002b9280e105c9307f31f7d7063d1019c.tar.gz
postgresql-ea04818002b9280e105c9307f31f7d7063d1019c.zip
Add a couple of missing includes
Diffstat (limited to 'src/backend/access/gist')
-rw-r--r--src/backend/access/gist/gist.c17
-rw-r--r--src/backend/access/gist/gistget.c7
-rw-r--r--src/backend/access/gist/gistscan.c8
-rw-r--r--src/backend/access/gist/giststrat.c2
4 files changed, 24 insertions, 10 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c
index 3f1f7b8674c..4761dfc83f6 100644
--- a/src/backend/access/gist/gist.c
+++ b/src/backend/access/gist/gist.c
@@ -11,17 +11,21 @@
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
+#include <stdio.h>
+#include <time.h>
+#include <sys/types.h>
+#include <string.h>
+#include "postgres.h"
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
+#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
#include "catalog/pg_am.h"
#include "catalog/pg_class.h"
-#include "nodes/nodes.h"
#include "rewrite/prs2lock.h"
#include "access/skey.h"
#include "access/strat.h"
@@ -35,12 +39,12 @@
#include "storage/itemid.h"
#include "storage/item.h"
#include "storage/buf.h"
+#include "storage/page.h"
#include "storage/bufpage.h"
#include "access/gist.h"
#include "access/funcindex.h"
-#include <time.h>
#include "utils/nabstime.h"
#include "access/htup.h"
@@ -51,13 +55,15 @@
#include "nodes/params.h"
#include "access/sdir.h"
+#include "storage/ipc.h"
#include "executor/hashjoin.h"
+#include "utils/fcache.h"
#include "nodes/primnodes.h"
+#include "utils/memutils.h"
+#include "lib/fstack.h"
#include "nodes/memnodes.h"
#include "nodes/execnodes.h"
-#include <stdio.h>
-#include "storage/ipc.h"
#include "storage/bufmgr.h"
#include "catalog/pg_index.h"
@@ -84,7 +90,6 @@
#include "access/genam.h"
-#include <string.h>
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#endif
diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c
index 1392ea3a1ca..7abc2ca5c4c 100644
--- a/src/backend/access/gist/gistget.c
+++ b/src/backend/access/gist/gistget.c
@@ -11,10 +11,14 @@
*-------------------------------------------------------------------------
*/
+#include <stdio.h>
+#include <time.h>
+
#include "postgres.h"
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
+#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
@@ -29,7 +33,6 @@
#include "storage/block.h"
#include "storage/off.h"
#include "storage/itemptr.h"
-#include <time.h>
#include "utils/nabstime.h"
#include "access/htup.h"
@@ -39,6 +42,7 @@
#include "storage/itemid.h"
#include "storage/item.h"
+#include "storage/page.h"
#include "storage/bufpage.h"
#include "access/sdir.h"
@@ -57,7 +61,6 @@
# include <string.h>
#endif
-#include <stdio.h>
#include "storage/ipc.h"
#include "storage/bufmgr.h"
diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c
index 2ebba9bb5f8..262504e1651 100644
--- a/src/backend/access/gist/gistscan.c
+++ b/src/backend/access/gist/gistscan.c
@@ -10,10 +10,14 @@
*-------------------------------------------------------------------------
*/
+#include <stdio.h>
+#include <time.h>
+
#include "postgres.h"
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
+#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
@@ -28,7 +32,6 @@
#include "storage/block.h"
#include "storage/off.h"
#include "storage/itemptr.h"
-#include <time.h>
#include "utils/nabstime.h"
#include "access/htup.h"
@@ -38,6 +41,7 @@
#include "storage/itemid.h"
#include "storage/item.h"
+#include "storage/page.h"
#include "storage/bufpage.h"
#include "access/gist.h"
@@ -46,6 +50,7 @@
#include "access/sdir.h"
#include "access/genam.h"
+#include <sys/types.h>
#include "storage/ipc.h"
#include "storage/spin.h"
#include "utils/hsearch.h"
@@ -65,7 +70,6 @@
#include "storage/off.h"
#include "access/rtree.h"
-#include <stdio.h>
#include "storage/bufmgr.h"
#include "access/giststrat.h"
diff --git a/src/backend/access/gist/giststrat.c b/src/backend/access/gist/giststrat.c
index c6212edf109..d2c97ccbdee 100644
--- a/src/backend/access/gist/giststrat.c
+++ b/src/backend/access/gist/giststrat.c
@@ -16,6 +16,7 @@
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
+#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
@@ -34,6 +35,7 @@
#include "storage/itemid.h"
#include "storage/item.h"
#include "storage/buf.h"
+#include "storage/page.h"
#include "storage/bufpage.h"
#include "access/gist.h"