@@ -1664,7 +1664,7 @@ convertJsonbArray(StringInfo buffer, JEntry *header, JsonbValue *val, int level)
1664
1664
if (totallen > JENTRY_OFFLENMASK )
1665
1665
ereport (ERROR ,
1666
1666
(errcode (ERRCODE_PROGRAM_LIMIT_EXCEEDED ),
1667
- errmsg ("total size of jsonb array elements exceeds the maximum of %u bytes" ,
1667
+ errmsg ("total size of jsonb array elements exceeds the maximum of %d bytes" ,
1668
1668
JENTRY_OFFLENMASK )));
1669
1669
1670
1670
/*
@@ -1684,7 +1684,7 @@ convertJsonbArray(StringInfo buffer, JEntry *header, JsonbValue *val, int level)
1684
1684
if (totallen > JENTRY_OFFLENMASK )
1685
1685
ereport (ERROR ,
1686
1686
(errcode (ERRCODE_PROGRAM_LIMIT_EXCEEDED ),
1687
- errmsg ("total size of jsonb array elements exceeds the maximum of %u bytes" ,
1687
+ errmsg ("total size of jsonb array elements exceeds the maximum of %d bytes" ,
1688
1688
JENTRY_OFFLENMASK )));
1689
1689
1690
1690
/* Initialize the header of this node in the container's JEntry array */
@@ -1745,7 +1745,7 @@ convertJsonbObject(StringInfo buffer, JEntry *header, JsonbValue *val, int level
1745
1745
if (totallen > JENTRY_OFFLENMASK )
1746
1746
ereport (ERROR ,
1747
1747
(errcode (ERRCODE_PROGRAM_LIMIT_EXCEEDED ),
1748
- errmsg ("total size of jsonb object elements exceeds the maximum of %u bytes" ,
1748
+ errmsg ("total size of jsonb object elements exceeds the maximum of %d bytes" ,
1749
1749
JENTRY_OFFLENMASK )));
1750
1750
1751
1751
/*
@@ -1780,7 +1780,7 @@ convertJsonbObject(StringInfo buffer, JEntry *header, JsonbValue *val, int level
1780
1780
if (totallen > JENTRY_OFFLENMASK )
1781
1781
ereport (ERROR ,
1782
1782
(errcode (ERRCODE_PROGRAM_LIMIT_EXCEEDED ),
1783
- errmsg ("total size of jsonb object elements exceeds the maximum of %u bytes" ,
1783
+ errmsg ("total size of jsonb object elements exceeds the maximum of %d bytes" ,
1784
1784
JENTRY_OFFLENMASK )));
1785
1785
1786
1786
/*
@@ -1800,7 +1800,7 @@ convertJsonbObject(StringInfo buffer, JEntry *header, JsonbValue *val, int level
1800
1800
if (totallen > JENTRY_OFFLENMASK )
1801
1801
ereport (ERROR ,
1802
1802
(errcode (ERRCODE_PROGRAM_LIMIT_EXCEEDED ),
1803
- errmsg ("total size of jsonb object elements exceeds the maximum of %u bytes" ,
1803
+ errmsg ("total size of jsonb object elements exceeds the maximum of %d bytes" ,
1804
1804
JENTRY_OFFLENMASK )));
1805
1805
1806
1806
/* Initialize the header of this node in the container's JEntry array */
0 commit comments