1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-11468 JSON_UNQUOTE returns incorrect results.

Now return the argument's value when error.
This commit is contained in:
Alexey Botchkov
2016-12-06 00:34:25 +04:00
parent 0009f4a441
commit 3743b4c3ef
3 changed files with 6 additions and 2 deletions

View File

@ -277,6 +277,9 @@ drop table t1;
select json_unquote('"abc"');
json_unquote('"abc"')
abc
select json_unquote('abc');
json_unquote('abc')
abc
select json_object("a", json_object("b", "abcd"));
json_object("a", json_object("b", "abcd"))
{"a": {"b": "abcd"}}