Fix incorrect print format in json.c
authorMichael Paquier <michael@paquier.xyz>
Wed, 29 Jul 2020 05:44:32 +0000 (14:44 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 29 Jul 2020 05:44:32 +0000 (14:44 +0900)
commitf2130e77da51f35d37fd15a343bc1c4a4527e0fd
tree437058a14856074a22a3dc100b36da7c766f4c8a
parentcb04ad498551dcdb91a834c2e8730cdf0b77e70a
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
src/backend/utils/adt/json.c