MySQL [(none)]> SELECT JSON_VALID(CONVERT(UNHEX("7B202261223A2022EFBFBDEFBFBD22207D0A") USING hebrew));
|
+---------------------------------------------------------------------------------+
|
| JSON_VALID(CONVERT(UNHEX("7B202261223A2022EFBFBDEFBFBD22207D0A") USING hebrew)) |
|
+---------------------------------------------------------------------------------+
|
| 1 |
|
+---------------------------------------------------------------------------------+
|
1 row in set, 1 warning (0.000 sec)
|
|
MySQL [(none)]> show warnings;
|
+---------+------+-------------------------------------------+
|
| Level | Code | Message |
|
+---------+------+-------------------------------------------+
|
| Warning | 1300 | Invalid hebrew character string: 'BFBDEF' |
|
+---------+------+-------------------------------------------+
|
1 row in set (0.000 sec)
|
|
MySQL [(none)]> SELECT JSON_EXTRACT(CONVERT(UNHEX("7B202261223A2022EFBFBDEFBFBD22207D0A") USING hebrew), '$.*');
|
+------------------------------------------------------------------------------------------+
|
| JSON_EXTRACT(CONVERT(UNHEX("7B202261223A2022EFBFBDEFBFBD22207D0A") USING hebrew), '$.*') |
|
+------------------------------------------------------------------------------------------+
|
| ["ן?½ן?½"] |
|
+------------------------------------------------------------------------------------------+
|
1 row in set, 1 warning (0.000 sec)
|
|
MySQL [(none)]> show warnings;
|
+---------+------+-------------------------------------------+
|
| Level | Code | Message |
|
+---------+------+-------------------------------------------+
|
| Warning | 1300 | Invalid hebrew character string: 'BFBDEF' |
|
+---------+------+-------------------------------------------+
|
1 row in set (0.000 sec)
|
|
MySQL [(none)]> SELECT * FROM JSON_TABLE(CONVERT(UNHEX("7B202261223A2022EFBFBDEFBFBD22207D0A") USING hebrew), '$.*' COLUMNS (o FOR ORDINALITY)) jt;
|
+------+
|
| o |
|
+------+
|
| 1 |
|
+------+
|
1 row in set, 1 warning (0.001 sec)
|
|
MySQL [(none)]> show warnings;
|
+---------+------+-------------------------------------------+
|
| Level | Code | Message |
|
+---------+------+-------------------------------------------+
|
| Warning | 1300 | Invalid hebrew character string: 'BFBDEF' |
|
+---------+------+-------------------------------------------+
|
1 row in set (0.000 sec)
|
|
MySQL [(none)]> SELECT * FROM JSON_TABLE(CONVERT(UNHEX("7B202261223A2022EFBFBDEFBFBD22207D0A") USING hebrew), '$.*' COLUMNS (o FOR ORDINALITY)) jt WHERE 0;
|
Empty set, 1 warning (0.001 sec)
|
|
MySQL [(none)]> show warnings;
|
+---------+------+-------------------------------------------+
|
| Level | Code | Message |
|
+---------+------+-------------------------------------------+
|
| Warning | 1300 | Invalid hebrew character string: 'BFBDEF' |
|
+---------+------+-------------------------------------------+
|
1 row in set (0.000 sec)
|