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/common/indextuple.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/common/indextuple.c')
-rw-r--r-- | src/backend/access/common/indextuple.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/backend/access/common/indextuple.c b/src/backend/access/common/indextuple.c index c7f136bf686..d0696aa70ec 100644 --- a/src/backend/access/common/indextuple.c +++ b/src/backend/access/common/indextuple.c @@ -8,16 +8,27 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.3 1996/10/19 04:51:36 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.4 1996/10/20 08:31:29 scrappy Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" +#include "storage/block.h" +#include "storage/off.h" +#include "catalog/pg_attribute.h" +#include "access/attnum.h" +#include "nodes/pg_list.h" +#include "storage/itemptr.h" +#include "access/tupdesc.h" #include "access/itup.h" + +#include "utils/memutils.h" #include "access/ibit.h" +#include "access/tupmacs.h" + static Size IndexInfoFindDataOffset(unsigned short t_info); /* ---------------------------------------------------------------- |