Skip to content

Commit f2130e7

Browse files
committed
Fix incorrect print format in json.c
Oid is unsigned, so %u needs to be used and not %d. The code path involved here is not normally reachable, so no backpatch is done. Author: Justin Pryzby Discussion: https://postgr.es/m/20200728015523.GA27308@telsasoft.com
1 parent cb04ad4 commit f2130e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/json.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ JsonEncodeDateTime(char *buf, Datum value, Oid typid, const int *tzp)
458458
}
459459
break;
460460
default:
461-
elog(ERROR, "unknown jsonb value datetime type oid %d", typid);
461+
elog(ERROR, "unknown jsonb value datetime type oid %u", typid);
462462
return NULL;
463463
}
464464

0 commit comments

Comments
 (0)