diff options
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 54c0c4a4f6c..1342bc6aec8 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -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; } |