mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Change error messages to oids come out as %u and not %d. Change has no
real affect now.
This commit is contained in:
@ -1162,7 +1162,7 @@ initGISTstate(GISTSTATE *giststate, Relation index)
|
||||
0, 0, 0);
|
||||
itupform = (Form_pg_index) GETSTRUCT(htup);
|
||||
if (!HeapTupleIsValid(htup))
|
||||
elog(ERROR, "initGISTstate: index %d not found",
|
||||
elog(ERROR, "initGISTstate: index %u not found",
|
||||
RelationGetRelid(index));
|
||||
giststate->haskeytype = itupform->indhaskeytype;
|
||||
if (giststate->haskeytype)
|
||||
@ -1174,7 +1174,7 @@ initGISTstate(GISTSTATE *giststate, Relation index)
|
||||
0, 0);
|
||||
if (!HeapTupleIsValid(htup))
|
||||
{
|
||||
elog(ERROR, "initGISTstate: no attribute tuple %d %d",
|
||||
elog(ERROR, "initGISTstate: no attribute tuple %u %d",
|
||||
itupform->indexrelid, FirstOffsetNumber);
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user