1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-13138 JSON_OBJECT returns null with strings containing backticks.

Condition was fixed.
This commit is contained in:
Alexey Botchkov
2017-09-12 13:26:03 +04:00
parent 66a09bd6ab
commit 594c6b37f3
3 changed files with 13 additions and 1 deletions

View File

@ -674,3 +674,9 @@ JSON_EXTRACT('{"foo": "bar" foobar foo invalid ', '$.foo')
NULL
Warnings:
Warning 4038 Syntax error in JSON text in argument 1 to function 'json_extract' at position 15
SELECT JSON_OBJECT('foo', '`');
JSON_OBJECT('foo', '`')
{"foo": "`"}
SELECT JSON_OBJECT("foo", "bar`bar");
JSON_OBJECT("foo", "bar`bar")
{"foo": "bar`bar"}