|
|
|
@ -7,7 +7,7 @@ |
|
|
|
|
* |
|
|
|
|
* |
|
|
|
|
* IDENTIFICATION |
|
|
|
|
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.6 1996/10/31 08:52:52 scrappy Exp $ |
|
|
|
|
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.7 1996/11/03 12:35:27 scrappy Exp $ |
|
|
|
|
* |
|
|
|
|
*------------------------------------------------------------------------- |
|
|
|
|
*/ |
|
|
|
@ -16,73 +16,29 @@ |
|
|
|
|
#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" |
|
|
|
|
#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 "utils/nabstime.h" |
|
|
|
|
#include "access/htup.h" |
|
|
|
|
|
|
|
|
|
#include "access/itup.h" |
|
|
|
|
|
|
|
|
|
#include "utils/tqual.h" |
|
|
|
|
|
|
|
|
|
#include "utils/palloc.h" |
|
|
|
|
#include "storage/buf.h" |
|
|
|
|
#include "catalog/index.h" |
|
|
|
|
|
|
|
|
|
#include "access/relscan.h" |
|
|
|
|
#include "access/rtscan.h" |
|
|
|
|
|
|
|
|
|
#include "storage/ipc.h" |
|
|
|
|
#include "storage/spin.h" |
|
|
|
|
#include "utils/hsearch.h" |
|
|
|
|
#include "storage/shmem.h" |
|
|
|
|
#include "storage/lock.h" |
|
|
|
|
#include "storage/lmgr.h" |
|
|
|
|
|
|
|
|
|
#include "access/genam.h" |
|
|
|
|
|
|
|
|
|
#include "access/rtree.h" |
|
|
|
|
#include "access/funcindex.h" |
|
|
|
|
|
|
|
|
|
#include "nodes/params.h" |
|
|
|
|
#include "access/sdir.h" |
|
|
|
|
#include "executor/hashjoin.h" |
|
|
|
|
#include "utils/fcache.h" |
|
|
|
|
#include "nodes/primnodes.h" |
|
|
|
|
#include "lib/fstack.h" |
|
|
|
|
#include "utils/memutils.h" |
|
|
|
|
#include "nodes/memnodes.h" |
|
|
|
|
#include "executor/tuptable.h" |
|
|
|
|
#include "nodes/execnodes.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 "access/heapam.h" |
|
|
|
|
|
|
|
|
|
#include "storage/itemid.h" |
|
|
|
|
#include "storage/item.h" |
|
|
|
|
#include "storage/buf.h" |
|
|
|
|
#include "storage/page.h" |
|
|
|
|
#include "storage/bufpage.h" |
|
|
|
|
|
|
|
|
|
typedef struct SPLITVEC { |
|
|
|
|