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/tcop/fastpath.c | |
parent | b7332c92438a518c7845a42f8892d2bd4a4f3258 (diff) | |
download | postgresql-4853495e033245bbfc1d212ba8f2286008873f64.tar.gz postgresql-4853495e033245bbfc1d212ba8f2286008873f64.zip |
Change error messages to oids come out as %u and not %d. Change has no
real affect now.
Diffstat (limited to 'src/backend/tcop/fastpath.c')
-rw-r--r-- | src/backend/tcop/fastpath.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/tcop/fastpath.c b/src/backend/tcop/fastpath.c index 5dd71b2b9e2..23f2bd7a272 100644 --- a/src/backend/tcop/fastpath.c +++ b/src/backend/tcop/fastpath.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.23 1999/04/25 03:19:10 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.24 1999/05/10 00:45:46 momjian Exp $ * * NOTES * This cruft is the server side of PQfn. @@ -214,7 +214,7 @@ update_fp_info(Oid func_id, struct fp_info * fip) 0, 0, 0); if (!HeapTupleIsValid(func_htp)) { - elog(ERROR, "update_fp_info: cache lookup for function %d failed", + elog(ERROR, "update_fp_info: cache lookup for function %u failed", func_id); } pp = (Form_pg_proc) GETSTRUCT(func_htp); @@ -231,7 +231,7 @@ update_fp_info(Oid func_id, struct fp_info * fip) 0, 0, 0); if (!HeapTupleIsValid(type_htp)) { - elog(ERROR, "update_fp_info: bad argument type %d for %d", + elog(ERROR, "update_fp_info: bad argument type %u for %u", argtypes[i], func_id); } tp = (Form_pg_type) GETSTRUCT(type_htp); @@ -247,7 +247,7 @@ update_fp_info(Oid func_id, struct fp_info * fip) 0, 0, 0); if (!HeapTupleIsValid(type_htp)) { - elog(ERROR, "update_fp_info: bad return type %d for %d", + elog(ERROR, "update_fp_info: bad return type %u for %u", rettype, func_id); } tp = (Form_pg_type) GETSTRUCT(type_htp); |