diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2018-09-12 21:57:28 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2018-09-12 21:57:28 +0400 |
commit | a93363022ccdb66846f2fc87b630ebdf4184b45d (patch) | |
tree | 7f3c0edb0c1e56ee25cd3edafb923afd70e60e12 /sql/item_jsonfunc.h | |
parent | c3124174c3ec43836147003a78af5d55bd624151 (diff) | |
download | mariadb-git-a93363022ccdb66846f2fc87b630ebdf4184b45d.tar.gz |
MDEV-17018 JSON_SEARCH and User-Defined Variables.
Item_func_json_search needs a member to store the path.
Diffstat (limited to 'sql/item_jsonfunc.h')
-rw-r--r-- | sql/item_jsonfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_jsonfunc.h b/sql/item_jsonfunc.h index f331ee3b582..f2358168080 100644 --- a/sql/item_jsonfunc.h +++ b/sql/item_jsonfunc.h @@ -400,7 +400,7 @@ public: class Item_func_json_search: public Item_json_str_multipath { protected: - String tmp_js, esc_value; + String tmp_js, tmp_path, esc_value; bool mode_one; bool ooa_constant, ooa_parsed; int escape; |