aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Riggs <simon@2ndQuadrant.com>2010-03-20 07:49:48 +0000
committerSimon Riggs <simon@2ndQuadrant.com>2010-03-20 07:49:48 +0000
commitbf6285b3a7e0dc9936990b98d799a36a5d2db140 (patch)
tree98f02be69515ba9bdb637aa5412908ededd3a130
parent128b1c5022dd6299a56d9cf356a6368d1aeea885 (diff)
downloadpostgresql-bf6285b3a7e0dc9936990b98d799a36a5d2db140.tar.gz
postgresql-bf6285b3a7e0dc9936990b98d799a36a5d2db140.zip
Further corrections of mismatching struct and btree SizeOf macros.
In this case, correction is to remove now unused fields from struct. Since these were unused and full of garbage anyway, no version change.
-rw-r--r--src/include/access/nbtree.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h
index 15d8b321aef..e00594b487d 100644
--- a/src/include/access/nbtree.h
+++ b/src/include/access/nbtree.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.132 2010/03/19 20:51:30 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.133 2010/03/20 07:49:48 sriggs Exp $
*
*-------------------------------------------------------------------------
*/
@@ -317,7 +317,6 @@ typedef struct xl_btree_delete
RelFileNode node;
BlockNumber block;
TransactionId latestRemovedXid;
- int numItems; /* number of items in the offset array */
/* TARGET OFFSET NUMBERS FOLLOW AT THE END */
} xl_btree_delete;
@@ -363,7 +362,6 @@ typedef struct xl_btree_vacuum
RelFileNode node;
BlockNumber block;
BlockNumber lastBlockVacuumed;
- int numItems; /* number of items in the offset array */
/* TARGET OFFSET NUMBERS FOLLOW */
} xl_btree_vacuum;