aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/rtree/rtree.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-20 09:27:24 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-20 09:27:24 +0000
commite1220b7c21390d3aee660d5839e63259cc9d2a7e (patch)
tree64fd2e4570d6172df7b57b1a09a905c6da47c109 /src/backend/access/rtree/rtree.c
parent5a0b450c781e27701e15f525086faf948eb6f8f8 (diff)
downloadpostgresql-e1220b7c21390d3aee660d5839e63259cc9d2a7e.tar.gz
postgresql-e1220b7c21390d3aee660d5839e63259cc9d2a7e.zip
More #include cleanups
Once access/* is cleaned out, will redo using -Wall on compile to make sure that all prototyping is correct
Diffstat (limited to 'src/backend/access/rtree/rtree.c')
-rw-r--r--src/backend/access/rtree/rtree.c68
1 files changed, 51 insertions, 17 deletions
diff --git a/src/backend/access/rtree/rtree.c b/src/backend/access/rtree/rtree.c
index 33002cf1f6b..d9c65e3ac34 100644
--- a/src/backend/access/rtree/rtree.c
+++ b/src/backend/access/rtree/rtree.c
@@ -7,34 +7,69 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.3 1996/10/18 05:21:27 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.4 1996/10/20 09:27:07 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
-#include "storage/bufmgr.h"
-#include "storage/bufpage.h"
-
-#include "utils/elog.h"
-#include "utils/palloc.h"
+#include "postgres.h"
+
+#include "catalog/pg_attribute.h"
+#include "access/attnum.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"
#include "utils/rel.h"
-#include "utils/excid.h"
+
+#include "storage/block.h"
+#include "storage/off.h"
+#include "storage/itemptr.h"
+#include <time.h>
+#include "utils/nabstime.h"
+#include "access/htup.h"
+
+#include "access/itup.h"
+
+#include "utils/tqual.h"
+#include "storage/buf.h"
+#include "access/relscan.h"
+
+#include "storage/itemid.h"
+#include "storage/item.h"
+#include "storage/bufpage.h"
-#include "access/heapam.h"
-#include "access/genam.h"
#include "access/rtree.h"
-#include "access/rtscan.h"
-#include "access/funcindex.h"
-#include "access/tupdesc.h"
+#include "access/funcindex.h"
+
+#include "nodes/params.h"
+#include "access/sdir.h"
+#include "executor/hashjoin.h"
+#include "nodes/primnodes.h"
+#include "nodes/memnodes.h"
+#include "executor/tuptable.h"
#include "nodes/execnodes.h"
-#include "nodes/plannodes.h"
+
+#include <stdio.h>
+#include "storage/ipc.h"
+#include "storage/bufmgr.h"
+#include "utils/geo-decls.h"
+
+#include "nodes/plannodes.h"
+#include "nodes/parsenodes.h"
+#include "tcop/dest.h"
+#include "executor/execdesc.h"
+#include "catalog/pg_index.h"
#include "executor/executor.h"
-#include "executor/tuptable.h"
-#include "catalog/index.h"
+#include "access/heapam.h"
typedef struct SPLITVEC {
OffsetNumber *spl_left;
@@ -906,7 +941,6 @@ static void initRtstate(RTSTATE *rtstate, Relation index)
}
#ifdef RTDEBUG
-#include "utils/geo-decls.h"
void
_rtdump(Relation r)