mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Adjust GiST error messages to conform to message style guidelines.
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user