aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/gin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/access/gin.h')
-rw-r--r--src/include/access/gin.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/include/access/gin.h b/src/include/access/gin.h
index 7a343c62c49..614e8566b90 100644
--- a/src/include/access/gin.h
+++ b/src/include/access/gin.h
@@ -4,7 +4,7 @@
*
* Copyright (c) 2006-2008, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/include/access/gin.h,v 1.17 2008/04/10 22:25:25 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/access/gin.h,v 1.18 2008/04/22 17:52:43 teodor Exp $
*--------------------------------------------------------------------------
*/
@@ -356,14 +356,16 @@ typedef struct GinScanEntryData
/* entry, got from extractQueryFn */
Datum entry;
- /* current ItemPointer to heap, its offset in buffer and buffer */
- ItemPointerData curItem;
- OffsetNumber offset;
+ /* Current page in posting tree */
Buffer buffer;
- /* in case of Posing list */
+ /* current ItemPointer to heap */
+ ItemPointerData curItem;
+
+ /* used for Posting list and one page in Posting tree */
ItemPointerData *list;
- uint32 nlist;
+ uint32 nlist;
+ OffsetNumber offset;
bool isFinished;
bool reduceResult;