diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 09:27:24 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 09:27:24 +0000 |
commit | e1220b7c21390d3aee660d5839e63259cc9d2a7e (patch) | |
tree | 64fd2e4570d6172df7b57b1a09a905c6da47c109 /src/backend/access/index/indexam.c | |
parent | 5a0b450c781e27701e15f525086faf948eb6f8f8 (diff) | |
download | postgresql-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/index/indexam.c')
-rw-r--r-- | src/backend/access/index/indexam.c | 47 |
1 files changed, 28 insertions, 19 deletions
diff --git a/src/backend/access/index/indexam.c b/src/backend/access/index/indexam.c index 32e42011199..7a01884850f 100644 --- a/src/backend/access/index/indexam.c +++ b/src/backend/access/index/indexam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.2 1996/08/26 06:27:48 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.3 1996/10/20 09:27:22 scrappy Exp $ * * INTERFACE ROUTINES * index_open - open an index relation by relationId @@ -62,31 +62,40 @@ * *------------------------------------------------------------------------- */ -#include "postgres.h" +#include "postgres.h" + +#include "catalog/pg_attribute.h" #include "access/attnum.h" -#include "access/genam.h" -#include "access/heapam.h" -#include "access/itup.h" -#include "access/relscan.h" -#include "access/sdir.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/funcindex.h" - -#include "storage/lmgr.h" -#include "utils/elog.h" -#include "utils/palloc.h" +#include "access/strat.h" #include "utils/rel.h" -#include "utils/relcache.h" + +#include "storage/block.h" +#include "storage/off.h" +#include "storage/itemptr.h" +#include "access/itup.h" -#include "catalog/catname.h" -#include "catalog/pg_attribute.h" -#include "catalog/pg_index.h" -#include "catalog/pg_proc.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 "catalog/index.h" +#include "access/sdir.h" + +#include "access/funcindex.h" +#include "access/genam.h" -#include "fmgr.h" +#include "utils/relcache.h" /* ---------------- * undefine macros we aren't going to use that would otherwise |