You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case 1 JsonBinary.parseAsString(value.getBytes(StandardCharsets.US_ASCII))
exception msg: The key offset in the JSON document is 72 and is too big for the binary form of the document (63)
case 2 JsonBinary.parseAsString(value.getBytes(StandardCharsets.UTF_8))
exception msg: Unknown value type code '10'
case 3 JsonBinary.parseAsString(value.getBytes())
exception msg: Unknown value type code '10'
thanks for all
The text was updated successfully, but these errors were encountered:
column type : json
value:
{"rollSubNo":"EBR123456789-1,EBR123456789-2,EBR123456789-3,EBR123456789-4","rollBatchNo":"CDC00000000123456789","rollFlag":true,"rollReject":true}
JsonBinary.parseAsString(value.getBytes(StandardCharsets.US_ASCII))
exception msg:
The key offset in the JSON document is 72 and is too big for the binary form of the document (63)
JsonBinary.parseAsString(value.getBytes(StandardCharsets.UTF_8))
exception msg:
Unknown value type code '10'
JsonBinary.parseAsString(value.getBytes())
exception msg:
Unknown value type code '10'
thanks for all
The text was updated successfully, but these errors were encountered: