diff options
Diffstat (limited to 'src/backend/access/hash/hashscan.c')
-rw-r--r-- | src/backend/access/hash/hashscan.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/access/hash/hashscan.c b/src/backend/access/hash/hashscan.c index a4f2c442bf9..56717a59b4f 100644 --- a/src/backend/access/hash/hashscan.c +++ b/src/backend/access/hash/hashscan.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.4 1996/10/21 05:45:16 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.5 1996/10/31 08:24:42 scrappy Exp $ * * NOTES * Because we can be doing an index scan on a relation while we @@ -27,10 +27,13 @@ *------------------------------------------------------------------------- */ +#include <time.h> + #include "postgres.h" #include "catalog/pg_attribute.h" #include "access/attnum.h" +#include "nodes/nodes.h" #include "nodes/pg_list.h" #include "access/tupdesc.h" #include "storage/fd.h" @@ -45,18 +48,17 @@ #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/page.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" |