diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-10 00:46:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-10 00:46:32 +0000 |
commit | 4853495e033245bbfc1d212ba8f2286008873f64 (patch) | |
tree | 230beedec9848a1f462adbdf0dd1877c5d304fd5 /src/backend/utils/cache/lsyscache.c | |
parent | b7332c92438a518c7845a42f8892d2bd4a4f3258 (diff) |
Change error messages to oids come out as %u and not %d. Change has no
real affect now.
Diffstat (limited to 'src/backend/utils/cache/lsyscache.c')
-rw-r--r-- | src/backend/utils/cache/lsyscache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c index 54c930173ce..05ca92094cc 100644 --- a/src/backend/utils/cache/lsyscache.c +++ b/src/backend/utils/cache/lsyscache.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.25 1999/02/21 03:49:33 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.26 1999/05/10 00:46:07 momjian Exp $ * * NOTES * Eventually, the index information should go through here, too. @@ -140,7 +140,7 @@ get_attisset(Oid relid, char *attname) PointerGetDatum(attname), 0, 0); if (!HeapTupleIsValid(tuple)) - elog(ERROR, "get_attisset: no attribute %s in relation %d", + elog(ERROR, "get_attisset: no attribute %s in relation %u", attname, relid); if (heap_attisnull(tuple, attno)) return false; @@ -218,7 +218,7 @@ get_opname(Oid opno) { /* don't throw an error anymore; we want to continue... */ #ifdef NOT_USED - elog(ERROR, "can't look up operator %d\n", opno); + elog(ERROR, "can't look up operator %u\n", opno); #endif return NULL; } |