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/commands/copy.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/commands/copy.c')
-rw-r--r-- | src/backend/commands/copy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index dd280918165..9347c6d67dd 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.75 1999/05/03 19:09:38 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.76 1999/05/10 00:44:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -926,7 +926,7 @@ GetOutputFunction(Oid type) if (HeapTupleIsValid(typeTuple)) return (int) ((Form_pg_type) GETSTRUCT(typeTuple))->typoutput; - elog(ERROR, "GetOutputFunction: Cache lookup of type %d failed", type); + elog(ERROR, "GetOutputFunction: Cache lookup of type %u failed", type); return InvalidOid; } @@ -958,7 +958,7 @@ GetInputFunction(Oid type) if (HeapTupleIsValid(typeTuple)) return (int) ((Form_pg_type) GETSTRUCT(typeTuple))->typinput; - elog(ERROR, "GetInputFunction: Cache lookup of type %d failed", type); + elog(ERROR, "GetInputFunction: Cache lookup of type %u failed", type); return InvalidOid; } @@ -974,7 +974,7 @@ IsTypeByVal(Oid type) if (HeapTupleIsValid(typeTuple)) return (int) ((Form_pg_type) GETSTRUCT(typeTuple))->typbyval; - elog(ERROR, "GetInputFunction: Cache lookup of type %d failed", type); + elog(ERROR, "GetInputFunction: Cache lookup of type %u failed", type); return InvalidOid; } |