diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-31 08:09:47 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-31 08:09:47 +0000 |
commit | ea04818002b9280e105c9307f31f7d7063d1019c (patch) | |
tree | a04caf22571cc9757378cf19c0107f216e7b9506 /src/backend/access/gist/gistget.c | |
parent | ba4ad2c71a23e234a30ca39c94f3a10c7614e1d9 (diff) | |
download | postgresql-ea04818002b9280e105c9307f31f7d7063d1019c.tar.gz |
Add a couple of missing includes
Diffstat (limited to 'src/backend/access/gist/gistget.c')
-rw-r--r-- | src/backend/access/gist/gistget.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c index 1392ea3a1c..7abc2ca5c4 100644 --- a/src/backend/access/gist/gistget.c +++ b/src/backend/access/gist/gistget.c @@ -11,10 +11,14 @@ *------------------------------------------------------------------------- */ +#include <stdio.h> +#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" @@ -29,7 +33,6 @@ #include "storage/block.h" #include "storage/off.h" #include "storage/itemptr.h" -#include <time.h> #include "utils/nabstime.h" #include "access/htup.h" @@ -39,6 +42,7 @@ #include "storage/itemid.h" #include "storage/item.h" +#include "storage/page.h" #include "storage/bufpage.h" #include "access/sdir.h" @@ -57,7 +61,6 @@ # include <string.h> #endif -#include <stdio.h> #include "storage/ipc.h" #include "storage/bufmgr.h" |