From: Heikki Linnakangas Date: Tue, 30 Dec 2008 16:24:37 +0000 (+0000) Subject: The flag to mark dead tuples is nowadays called LP_DEAD, not LP_DELETE. X-Git-Tag: recoveryinfrav9~166 X-Git-Url: http://git.postgresql.org/gitweb/irc:/static/gitweb.js?a=commitdiff_plain;h=5215167119def4f9f7e16c43422ba35a4e7844c0;p=users%2Fsimon%2Fpostgres.git The flag to mark dead tuples is nowadays called LP_DEAD, not LP_DELETE. Simon Riggs. --- diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h index 35eaba61d9..c699c0fde6 100644 --- a/src/include/access/nbtree.h +++ b/src/include/access/nbtree.h @@ -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