diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 08:32:11 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 08:32:11 +0000 |
commit | 5a0b450c781e27701e15f525086faf948eb6f8f8 (patch) | |
tree | 3eaa78fc5da649bce24a0d3ed5699fe3aac06950 /src/backend/access/gist/gistscan.c | |
parent | dd007d4c3981b04776cf709b30f5b70706ecd322 (diff) | |
download | postgresql-5a0b450c781e27701e15f525086faf948eb6f8f8.tar.gz postgresql-5a0b450c781e27701e15f525086faf948eb6f8f8.zip |
First pass at fixing my own mistakes
Mainly...fix up the includes I removed, as well as prototypes
Pointed out by D'Arcy
Diffstat (limited to 'src/backend/access/gist/gistscan.c')
-rw-r--r-- | src/backend/access/gist/gistscan.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c index 2889369bd4e..3ca5af106fe 100644 --- a/src/backend/access/gist/gistscan.c +++ b/src/backend/access/gist/gistscan.c @@ -12,11 +12,40 @@ #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 "storage/block.h" +#include "storage/off.h" +#include "storage/itemptr.h" +#include <time.h> +#include "utils/nabstime.h" #include "access/htup.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/gist.h" +#include "access/itup.h" +#include "access/funcindex.h" +#include "access/sdir.h" +#include "access/genam.h" + /* routines defined and used here */ static void gistregscan(IndexScanDesc s); static void gistdropscan(IndexScanDesc s); |