diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2008-12-30 16:24:37 +0000 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2008-12-30 16:24:37 +0000 |
commit | 4942ea2870e8e4cb05ae9e7ebca7c90c854f0f64 (patch) | |
tree | 895d1426bbdb60159b38f9c0778b24aea94662d6 | |
parent | 1b1b0ac8d027044726fc09090a6112eb63c12ac4 (diff) | |
download | postgresql-4942ea2870e8e4cb05ae9e7ebca7c90c854f0f64.tar.gz postgresql-4942ea2870e8e4cb05ae9e7ebca7c90c854f0f64.zip |
The flag to mark dead tuples is nowadays called LP_DEAD, not LP_DELETE.
Simon Riggs.
-rw-r--r-- | src/include/access/nbtree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h index e0bc10c0642..178989a3b96 100644 --- a/src/include/access/nbtree.h +++ b/src/include/access/nbtree.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.121 2008/07/13 20:45:47 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.122 2008/12/30 16:24:37 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -72,7 +72,7 @@ typedef BTPageOpaqueData *BTPageOpaque; #define BTP_META (1 << 3) /* meta-page */ #define BTP_HALF_DEAD (1 << 4) /* empty, but still in tree */ #define BTP_SPLIT_END (1 << 5) /* rightmost page of split group */ -#define BTP_HAS_GARBAGE (1 << 6) /* page has LP_DELETEd tuples */ +#define BTP_HAS_GARBAGE (1 << 6) /* page has LP_DEAD tuples */ /* * The max allowed value of a cycle ID is a bit less than 64K. This is |