summaryrefslogtreecommitdiff
path: root/sql/item_jsonfunc.h
diff options
context:
space:
mode:
authorAlexey Botchkov <holyfoot@askmonty.org>2018-09-12 21:57:28 +0400
committerAlexey Botchkov <holyfoot@askmonty.org>2018-09-12 21:57:28 +0400
commita93363022ccdb66846f2fc87b630ebdf4184b45d (patch)
tree7f3c0edb0c1e56ee25cd3edafb923afd70e60e12 /sql/item_jsonfunc.h
parentc3124174c3ec43836147003a78af5d55bd624151 (diff)
downloadmariadb-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.h2
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;