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/hash/hashutil.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/hash/hashutil.c')
| -rw-r--r-- | src/backend/access/hash/hashutil.c | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/src/backend/access/hash/hashutil.c b/src/backend/access/hash/hashutil.c index fd035ee2a9..43f2b350fa 100644 --- a/src/backend/access/hash/hashutil.c +++ b/src/backend/access/hash/hashutil.c @@ -7,13 +7,42 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.2 1996/10/20 06:34:30 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.3 1996/10/20 08:31:52 scrappy Exp $ * *------------------------------------------------------------------------- */ #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 "access/itup.h" +#include "storage/itemid.h" +#include "storage/item.h" +#include "storage/buf.h" +#include "storage/bufpage.h" +#include "access/sdir.h" +#include "access/funcindex.h" +#include "utils/tqual.h" +#include "storage/buf.h" +#include "access/relscan.h" #include "access/hash.h" ScanKey |
