diff options
Diffstat (limited to 'src/backend/access/index/indexam.c')
-rw-r--r-- | src/backend/access/index/indexam.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/access/index/indexam.c b/src/backend/access/index/indexam.c index e023ef62a85..51cf2034fbc 100644 --- a/src/backend/access/index/indexam.c +++ b/src/backend/access/index/indexam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.19 1998/01/07 21:01:42 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.20 1998/01/31 04:38:06 momjian Exp $ * * INTERFACE ROUTINES * index_open - open an index relation by relationId @@ -386,7 +386,6 @@ GetIndexValue(HeapTuple tuple, for (i = 0; i < FIgetnArgs(fInfo); i++) { attData[i] = heap_getattr(tuple, - buffer, attrNums[i], hTupDesc, attNull); @@ -400,7 +399,7 @@ GetIndexValue(HeapTuple tuple, } else { - returnVal = heap_getattr(tuple, buffer, attrNums[attOff], + returnVal = heap_getattr(tuple, attrNums[attOff], hTupDesc, attNull); } return returnVal; |