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/heapvalid.c | |
parent | dd007d4c3981b04776cf709b30f5b70706ecd322 (diff) | |
download | postgresql-5a0b450c781e27701e15f525086faf948eb6f8f8.tar.gz |
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/heapvalid.c')
-rw-r--r-- | src/backend/access/common/heapvalid.c | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/backend/access/common/heapvalid.c b/src/backend/access/common/heapvalid.c index 2f25697152..53e0787197 100644 --- a/src/backend/access/common/heapvalid.c +++ b/src/backend/access/common/heapvalid.c @@ -7,19 +7,42 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.3 1996/10/19 04:51:34 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.4 1996/10/20 08:31:28 scrappy Exp $ * *------------------------------------------------------------------------- */ #include "postgres.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 "access/attnum.h" #include "access/skey.h" + #include "storage/buf.h" + #include "storage/itemid.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/strat.h" #include "utils/rel.h" + +#include "storage/item.h" #include "storage/bufpage.h" + #include "utils/tqual.h" /* ---------------- |