aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gist.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-19 06:27:33 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-19 06:27:33 +0000
commit0eac5b0ed5f57f1567ade5685701f9f0b2d7c7dd (patch)
tree95147a8a4173cccc145d9a63c307aac10b2171c9 /src/backend/access/gist/gist.c
parente77f64af62409c5b10f76e5d66706358ae5f4600 (diff)
downloadpostgresql-0eac5b0ed5f57f1567ade5685701f9f0b2d7c7dd.tar.gz
postgresql-0eac5b0ed5f57f1567ade5685701f9f0b2d7c7dd.zip
Welp, another subdirectory cleaned out of redundant/unused #include
files
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r--src/backend/access/gist/gist.c25
1 files changed, 8 insertions, 17 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c
index 90817742ecc..4e103de8694 100644
--- a/src/backend/access/gist/gist.c
+++ b/src/backend/access/gist/gist.c
@@ -10,30 +10,21 @@
*
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
-#include "storage/bufmgr.h"
-#include "storage/bufpage.h"
+#include "postgres.h"
-#include "utils/elog.h"
-#include "utils/palloc.h"
#include "utils/rel.h"
-#include "utils/excid.h"
-
-#include "access/heapam.h"
-#include "access/genam.h"
+#include "access/itup.h"
#include "access/gist.h"
-#include "access/gistscan.h"
#include "access/funcindex.h"
-#include "access/tupdesc.h"
-
-#include "nodes/execnodes.h"
-#include "nodes/plannodes.h"
-
-#include "executor/executor.h"
+#include "access/htup.h"
#include "executor/tuptable.h"
+#include "access/relscan.h"
+#include "nodes/execnodes.h"
+#include "storage/bufmgr.h"
+#include "catalog/pg_index.h"
+#include "utils/syscache.h"
-#include "catalog/index.h"
/* non-export function prototypes */
static InsertIndexResult gistdoinsert(Relation r, IndexTuple itup,