Bug #80349 | MySQL 5.7 JSON: improve documentation and possible improvements | ||
---|---|---|---|
Submitted: | 12 Feb 2016 7:53 | Modified: | 22 Mar 2018 5:49 |
Reporter: | Simon Mudd (OCA) | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: JSON | Severity: | S4 (Feature request) |
Version: | 5.7 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[12 Feb 2016 7:53]
Simon Mudd
[14 Feb 2016 8:52]
Morgan Tocker
The format is described in the worklog here: https://dev.mysql.com/worklog/task/?id=8132 On the second point, I'm not sure: mysql [localhost] {msandbox} (test) > show create table aa1\G *************************** 1. row *************************** Table: aa1 Create Table: CREATE TABLE `aa1` ( `a` int(11) NOT NULL, `b` json DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 1 row in set (0.00 sec) mysql [localhost] {msandbox} (test) > insert into aa1 values (1, json_array(1,2,3)); Query OK, 1 row affected (0.02 sec) mysql [localhost] {msandbox} (test) > warnings; Show warnings enabled. mysql [localhost] {msandbox} (test) > select b+0 from aa1; +------+ | b+0 | +------+ | 0 | +------+ 1 row in set, 1 warning (0.00 sec) Warning (Code 3156): Invalid JSON value for CAST to DOUBLE: '[1, 2, 3]' from b at row 1 mysql [localhost] {msandbox} (test) > select cast(b as binary) from aa1; +-------------------+ | cast(b as binary) | +-------------------+ | [1, 2, 3] | +-------------------+ 1 row in set (0.01 sec)
[22 Mar 2018 5:49]
MySQL Verification Team
Hello Simon, Thank you for the report and feature request! Thanks, Umesh