diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-09-22 18:49:45 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-09-22 18:49:45 +0000 |
commit | 08817bdb76d2a137bb7a4d1fe7551746d9045c8e (patch) | |
tree | 988d5e2a2919c14271da8e3ca6b361211d798d53 /src/backend/access/gist/gistscan.c | |
parent | a453951dd9902d675b9b61e60afe9e02a00a22c8 (diff) | |
download | postgresql-08817bdb76d2a137bb7a4d1fe7551746d9045c8e.tar.gz postgresql-08817bdb76d2a137bb7a4d1fe7551746d9045c8e.zip |
Adjust GiST error messages to conform to message style guidelines.
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); } } } |