From 4853495e033245bbfc1d212ba8f2286008873f64 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 10 May 1999 00:46:32 +0000 Subject: Change error messages to oids come out as %u and not %d. Change has no real affect now. --- src/backend/access/gist/gist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/access/gist/gist.c') 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; } -- cgit v1.2.3