diff options
Diffstat (limited to 'src/backend/access/nbtree/nbtpage.c')
-rw-r--r-- | src/backend/access/nbtree/nbtpage.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/backend/access/nbtree/nbtpage.c b/src/backend/access/nbtree/nbtpage.c index 7d0f9649340..1a7016a4bc2 100644 --- a/src/backend/access/nbtree/nbtpage.c +++ b/src/backend/access/nbtree/nbtpage.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.4 1996/11/03 12:35:17 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.5 1996/11/03 22:57:52 scrappy Exp $ * * NOTES * Postgres btree pages look like ordinary relation pages. The opaque @@ -26,24 +26,14 @@ #include "utils/rel.h" -#include "storage/buf.h" -#include "storage/block.h" -#include "storage/off.h" -#include "storage/itemptr.h" #include "access/itup.h" #include "access/funcindex.h" -#include "storage/itemid.h" -#include "storage/item.h" #include "storage/bufpage.h" -#include "utils/nabstime.h" #include "access/htup.h" -#include "utils/tqual.h" #include "access/relscan.h" #include "access/sdir.h" #include "access/nbtree.h" -#include "storage/ipc.h" -#include "storage/bufmgr.h" #include "storage/lmgr.h" #ifndef HAVE_MEMMOVE @@ -54,6 +44,8 @@ #include "miscadmin.h" +#include "storage/bufmgr.h" + #define BTREE_METAPAGE 0 #define BTREE_MAGIC 0x053162 #define BTREE_VERSION 0 |