diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-19 03:39:04 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-19 03:39:04 +0000 |
commit | d7dd05db558fba193812bcfc43f879dbd9fe48b4 (patch) | |
tree | d30b83de1b1b790a9228d41cb7fcd716e65f6007 /src | |
parent | 5dedad99a11ead58828951dba9d6f91876fdadfc (diff) | |
download | postgresql-d7dd05db558fba193812bcfc43f879dbd9fe48b4.tar.gz postgresql-d7dd05db558fba193812bcfc43f879dbd9fe48b4.zip |
Another cleaned up
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/common/indexvalid.c | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/src/backend/access/common/indexvalid.c b/src/backend/access/common/indexvalid.c index b437718cecc..0b96fbd5ebd 100644 --- a/src/backend/access/common/indexvalid.c +++ b/src/backend/access/common/indexvalid.c @@ -7,22 +7,30 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.1.1.1 1996/07/09 06:21:09 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.2 1996/10/19 03:39:04 scrappy Exp $ * *------------------------------------------------------------------------- */ + #include "postgres.h" -#include "executor/execdebug.h" -#include "access/genam.h" -#include "access/iqual.h" /* where the declarations go */ +#include "storage/block.h" +#include "storage/off.h" +#include "storage/itemptr.h" +#include "nodes/nodes.h" +#include "catalog/pg_attribute.h" +#include "access/attnum.h" +#include "nodes/pg_list.h" +#include "access/tupdesc.h" #include "access/itup.h" + #include "access/skey.h" -#include "storage/buf.h" -#include "storage/bufpage.h" -#include "storage/itemid.h" -#include "utils/rel.h" +#include "storage/block.h" +#include "storage/off.h" +#include "utils/nabstime.h" +#include "storage/itemptr.h" +#include "access/htup.h" /* ---------------------------------------------------------------- * index scan key qualification code |