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

MDEV-11856 json_search doesn't search for values with double quotes

character (").

        The my_wildcmp function doesn't expect the string parameter to
        have escapements, only the template. So the string
        should be unescaped if necessary.
This commit is contained in:
Alexey Botchkov
2017-03-14 15:25:02 +04:00
parent a77c2ea78f
commit 7c7c0696e7
6 changed files with 39 additions and 4 deletions

View File

@ -392,7 +392,7 @@ public:
class Item_func_json_search: public Item_json_str_multipath
{
protected:
String tmp_js;
String tmp_js, esc_value;
bool mode_one;
bool ooa_constant, ooa_parsed;
int escape;