Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4942ea2

Browse files
committed
The flag to mark dead tuples is nowadays called LP_DEAD, not LP_DELETE.
Simon Riggs.
1 parent 1b1b0ac commit 4942ea2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/access/nbtree.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.121 2008/07/13 20:45:47 tgl Exp $
10+
* $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.122 2008/12/30 16:24:37 heikki Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -72,7 +72,7 @@ typedef BTPageOpaqueData *BTPageOpaque;
7272
#define BTP_META (1 << 3) /* meta-page */
7373
#define BTP_HALF_DEAD (1 << 4) /* empty, but still in tree */
7474
#define BTP_SPLIT_END (1 << 5) /* rightmost page of split group */
75-
#define BTP_HAS_GARBAGE (1 << 6) /* page has LP_DELETEd tuples */
75+
#define BTP_HAS_GARBAGE (1 << 6) /* page has LP_DEAD tuples */
7676

7777
/*
7878
* The max allowed value of a cycle ID is a bit less than 64K. This is

0 commit comments

Comments
 (0)