Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5
-
None
Description
Run the following query on a fresh installation of MariaDB 10.6.x:
openxs@ao756:~/dbs/maria10.6$ bin/mysql --socket=/tmp/mariadb.sock
|
Welcome to the MariaDB monitor. Commands end with ; or \g.
|
Your MariaDB connection id is 6
|
Server version: 10.6.5-MariaDB MariaDB Server
|
|
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
|
|
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
|
|
MariaDB [(none)]> select json_object('attr2', ifnull(u.o, json_array())) j from
|
mysql.user u1 left join (select user, json_arrayagg(json_object('attr1', user))
|
as o from mysql.user group by user) u on u1.user = u.user where u1.user = 'root';
|
+--------------------------------------+
|
| j |
|
+--------------------------------------+
|
| {"attr2": "[{\"attr1\": \"root\"}]"} |
|
+--------------------------------------+
|
1 row in set (0.007 sec)
|
It will return a single row for the "root" user, but note that attributes and values in the array have backslash before the ". While with MySQL:
openxs@ao756:~/dbs/maria10.6$ bin/mysql -uroot --socket=/tmp/maysql8.sock
|
Welcome to the MariaDB monitor. Commands end with ; or \g.
|
Your MySQL connection id is 11
|
Server version: 8.0.26 Source distribution
|
|
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
|
|
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
|
|
MySQL [(none)]> select json_object('attr2', ifnull(u.o, json_array())) j from mysql.user u1 left join (select user, json_arrayagg(json_object('attr1', user)) as o from mysql.user group by user) u on u1.user = u.user where u1.user = 'root';
|
+--------------------------------+
|
| j |
|
+--------------------------------+
|
| {"attr2": [{"attr1": "root"}]} |
|
+--------------------------------+
|
1 row in set (0.002 sec)
|
we have expected quoting for the values in the array.
Why is this difference, that I consider a bug in MariaDB?
Attachments
Issue Links
- is blocked by
-
MDEV-27018 IF and COALESCE lose "json" property
-
- Closed
-
- relates to
-
MDEV-13701 Nesting JSON
-
- Closed
-
-
MDEV-16620 Add support for JSON_ARRAYAGG and JSON_OBJECTAGG
-
- Closed
-
-
MDEV-21902 Nested JSON_ARRAYAGG in JSON_OBJECT should not get escaped
-
- Closed
-
-
MDEV-27018 IF and COALESCE lose "json" property
-
- Closed
-
-
MDEV-27666 User variable not parsed as geometry variable in geometry function
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue relates to |
Link |
This issue relates to |
Affects Version/s | 10.5 [ 23123 ] | |
Affects Version/s | 10.6 [ 24028 ] |
Fix Version/s | 10.5 [ 23123 ] | |
Fix Version/s | 10.6 [ 24028 ] |
Assignee | Alexey Botchkov [ holyfoot ] |
Status | Open [ 1 ] | Confirmed [ 10101 ] |
Link |
This issue relates to |
Assignee | Alexey Botchkov [ holyfoot ] | Alexander Barkov [ bar ] |
Workflow | MariaDB v3 [ 124658 ] | MariaDB v4 [ 144404 ] |
Link |
This issue is blocked by |
Link |
This issue relates to |
Assignee | Alexander Barkov [ bar ] | Rucha Deodhar [ rucha174 ] |
Fix Version/s | 10.7 [ 24805 ] | |
Fix Version/s | 10.8 [ 26121 ] |
Link |
This issue relates to |
Assignee | Rucha Deodhar [ rucha174 ] | Sergei Golubchik [ serg ] |
Status | Confirmed [ 10101 ] | In Progress [ 3 ] |
Assignee | Sergei Golubchik [ serg ] | Alexander Barkov [ bar ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Fix Version/s | 10.9 [ 26905 ] | |
Fix Version/s | 10.10 [ 27530 ] | |
Fix Version/s | 10.11 [ 27614 ] |
Fix Version/s | N/A [ 14700 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Fix Version/s | 10.6 [ 24028 ] | |
Fix Version/s | 10.7 [ 24805 ] | |
Fix Version/s | 10.8 [ 26121 ] | |
Fix Version/s | 10.9 [ 26905 ] | |
Fix Version/s | 10.10 [ 27530 ] | |
Fix Version/s | 10.11 [ 27614 ] | |
Resolution | Won't Fix [ 2 ] | |
Status | In Review [ 10002 ] | Closed [ 6 ] |
Affects Version/s | 10.6 [ 24028 ] | |
Affects Version/s | 10.6.4 [ 26033 ] | |
Affects Version/s | 10.6.5 [ 26034 ] |
Assignee | Alexander Barkov [ bar ] | Sergei Golubchik [ serg ] |
Resolution | Won't Fix [ 2 ] | |
Status | Closed [ 6 ] | Stalled [ 10000 ] |
Fix Version/s | 10.6.3 [ 25904 ] | |
Fix Version/s | N/A [ 14700 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Zendesk Related Tickets | 187969 |
MariaDB [test]> select json_object("a",dt.x) from (select json_arrayagg(json_object('a1', 'name')) as x) dt ;
+-------------------------------+
| json_object("a",dt.x) |
+-------------------------------+
| {"a": "[{\"a1\": \"name\"}]"} |
+-------------------------------+
1 row in set (0.006 sec)
MariaDB [test]> select json_object("a",json_arrayagg(json_object('a1', 'name'))) ;
+-----------------------------------------------------------+
| json_object("a",json_arrayagg(json_object('a1', 'name'))) |
+-----------------------------------------------------------+
| {"a": [{"a1": "name"}]} |
+-----------------------------------------------------------+
1 row in set (0.001 sec)
I guess this is the same as
MDEV-13701.test from comments there:
MariaDB [test]> SELECT JSON_OBJECT("main", JSON_ARRAY("one", 2));
+-------------------------------------------+
| JSON_OBJECT("main", JSON_ARRAY("one", 2)) |
+-------------------------------------------+
| {"main": ["one", 2]} |
+-------------------------------------------+
1 row in set (0.001 sec)
MariaDB [test]> SET @sub = JSON_ARRAY("one", 2);
Query OK, 0 rows affected (0.001 sec)
MariaDB [test]> SELECT JSON_OBJECT("main", @sub);
+---------------------------+
| JSON_OBJECT("main", @sub) |
+---------------------------+
| {"main": "[\"one\", 2]"} |
+---------------------------+
1 row in set (0.001 sec)