1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-21902 Nested JSON_ARRAYAGG in JSON_OBJECT should not get escaped.

This commit is contained in:
Alexey Botchkov
2020-06-04 14:21:04 +04:00
parent 74198384e1
commit 2fcff310d0
3 changed files with 6 additions and 0 deletions

View File

@ -761,6 +761,8 @@ drop view v;
select json_arrayagg(a order by a asc) from (select 1 a union select 2 a) t;
select json_object('x', json_arrayagg(json_object('a', 1)));
--echo #
--echo # End of 10.5 tests
--echo #