diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 12:11:19 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 12:11:19 +0000 |
commit | 71cd646a34d3ad4aa10e586aea69c6818c3b1bc9 (patch) | |
tree | 3e77da62e44160aa43b06ccf0240e643af753df9 /src/backend/access/gist/gist.c | |
parent | dd71c369333d29cb79931ae1ddd3e149692dc824 (diff) | |
download | postgresql-71cd646a34d3ad4aa10e586aea69c6818c3b1bc9.tar.gz postgresql-71cd646a34d3ad4aa10e586aea69c6818c3b1bc9.zip |
More include file cleanups
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 86 |
1 files changed, 9 insertions, 77 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 4761dfc83f6..ad817f950d8 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -11,93 +11,25 @@ *------------------------------------------------------------------------- */ -#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 "rewrite/prs2lock.h" -#include "access/skey.h" -#include "access/strat.h" -#include "utils/rel.h" - -#include "storage/block.h" -#include "storage/off.h" -#include "storage/itemptr.h" -#include "access/itup.h" - -#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 "utils/nabstime.h" -#include "access/htup.h" - -#include "executor/tuptable.h" - -#include "utils/tqual.h" -#include "access/relscan.h" - -#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 "storage/bufmgr.h" - -#include "catalog/pg_index.h" - -#include "utils/syscache.h" - -#include "nodes/plannodes.h" -#include "nodes/parsenodes.h" -#include "tcop/dest.h" -#include "executor/execdesc.h" -#include "executor/executor.h" +#include "fmgr.h" +#include "access/genam.h" +#include "access/gist.h" +#include "access/gistscan.h" #include "access/heapam.h" - -#include "storage/spin.h" -#include "utils/hsearch.h" -#include "storage/shmem.h" -#include "storage/lock.h" +#include "catalog/index.h" +#include "executor/executor.h" +#include "storage/bufmgr.h" +#include "storage/bufpage.h" #include "storage/lmgr.h" - #include "utils/palloc.h" - -#include "catalog/index.h" - -#include "access/genam.h" +#include "utils/syscache.h" #ifndef HAVE_MEMMOVE # include "regex/utils.h" #endif -#include "access/gistscan.h" - -#include "fmgr.h" - /* non-export function prototypes */ static InsertIndexResult gistdoinsert(Relation r, IndexTuple itup, GISTSTATE *GISTstate); |