diff options
Diffstat (limited to 'src/backend/access/nbtree/nbtpage.c')
-rw-r--r-- | src/backend/access/nbtree/nbtpage.c | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/src/backend/access/nbtree/nbtpage.c b/src/backend/access/nbtree/nbtpage.c index ce411a80d11..044e37b8546 100644 --- a/src/backend/access/nbtree/nbtpage.c +++ b/src/backend/access/nbtree/nbtpage.c @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * btpage.c-- + * nbtpage.c-- * BTree-specific page management code for the Postgres btree access * method. * @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.1.1.1 1996/07/09 06:21:12 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.2 1996/10/20 10:53:06 scrappy Exp $ * * NOTES * Postgres btree pages look like ordinary relation pages. The opaque @@ -19,18 +19,44 @@ * *------------------------------------------------------------------------- */ -#include "postgres.h" -#include "storage/bufmgr.h" -#include "storage/bufpage.h" +#include "postgres.h" -#include "utils/elog.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 "utils/excid.h" -#include "access/genam.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 <time.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 <stdio.h> +#include "storage/ipc.h" +#include "storage/bufmgr.h" + #define BTREE_METAPAGE 0 #define BTREE_MAGIC 0x053162 #define BTREE_VERSION 0 |