diff options
Diffstat (limited to 'src/backend/access/gist/gistscan.c')
-rw-r--r-- | src/backend/access/gist/gistscan.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c index 933ca0f6c65..919ae5c3745 100644 --- a/src/backend/access/gist/gistscan.c +++ b/src/backend/access/gist/gistscan.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/gist/gistscan.c,v 1.59 2005/06/27 12:45:22 teodor Exp $ + * $PostgreSQL: pgsql/src/backend/access/gist/gistscan.c,v 1.60 2005/09/22 18:49:45 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -380,7 +380,7 @@ gistadjone(IndexScanDesc scan, */ static void adjustiptr(IndexScanDesc scan, - ItemPointer iptr, GISTSearchStack *stk, + ItemPointer iptr, GISTSearchStack *stk, int op, BlockNumber blkno, OffsetNumber offnum, XLogRecPtr newlsn, XLogRecPtr oldlsn) @@ -422,7 +422,8 @@ adjustiptr(IndexScanDesc scan, } break; default: - elog(ERROR, "Bad operation in GiST scan adjust: %d", op); + elog(ERROR, "unrecognized GiST scan adjust operation: %d", + op); } } } |