We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent88a30e6 commitbec82a8Copy full SHA for bec82a8
contrib/array/array_iterator.c
@@ -69,7 +69,7 @@ array_iterator(Oid elemtype, Oid proc, int and, ArrayType *array, Datum value)
69
typ_tuple=SearchSysCacheTuple(TYPEOID,ObjectIdGetDatum(elemtype),0,0,0);
70
if (!HeapTupleIsValid(typ_tuple))
71
{
72
-elog(ERROR,"array_iterator: cache lookup failed for type %d",elemtype);
+elog(ERROR,"array_iterator: cache lookup failed for type %u",elemtype);
73
return0;
74
}
75
typ_struct= (Form_pg_type)GETSTRUCT(typ_tuple);
@@ -83,7 +83,7 @@ array_iterator(Oid elemtype, Oid proc, int and, ArrayType *array, Datum value)
83
pronargs=finf.fn_nargs;/* Tobias Gabele Jan 18 1999 */
84
if ((proc_fn==NULL)|| (pronargs!=2))
85
86
-elog(ERROR,"array_iterator: fmgr_info lookup failed for oid %d",proc);
+elog(ERROR,"array_iterator: fmgr_info lookup failed for oid %u",proc);
87
return (0);
88
89