diff options
Diffstat (limited to 'src/include/access/gist_private.h')
-rw-r--r-- | src/include/access/gist_private.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/access/gist_private.h b/src/include/access/gist_private.h index 2d942e54b49..42f9bc76365 100644 --- a/src/include/access/gist_private.h +++ b/src/include/access/gist_private.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/gist_private.h,v 1.34 2008/10/20 13:39:44 teodor Exp $ + * $PostgreSQL: pgsql/src/include/access/gist_private.h,v 1.35 2008/10/22 12:53:56 teodor Exp $ * *------------------------------------------------------------------------- */ @@ -60,7 +60,8 @@ typedef struct GISTSTATE typedef struct ItemResult { - ItemPointerData iptr; + ItemPointerData heapPtr; + OffsetNumber pageOffset; /* offset in index page */ bool recheck; } ItemResult; |