summaryrefslogtreecommitdiff
path: root/sql/sql_explain.h
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2016-02-28 18:18:29 +0300
committerSergei Petrunia <psergey@askmonty.org>2016-02-28 18:18:29 +0300
commitab44e892d800f6d775df15e3829391a180675a64 (patch)
tree67152f36774f62a4aac1f9fe4fc01d3279ba732f /sql/sql_explain.h
parent0dbfc0fde75f8f6a20f4c9bb527308f87d3114e9 (diff)
downloadmariadb-git-ab44e892d800f6d775df15e3829391a180675a64.tar.gz
MDEV-9652: EXPLAIN FORMAT=JSON should show outer_ref_cond
Show outer_ref_condition in EXPLAIN FORMAT=JSON output.
Diffstat (limited to 'sql/sql_explain.h')
-rw-r--r--sql/sql_explain.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_explain.h b/sql/sql_explain.h
index 6a3e6c25a61..844773c4a47 100644
--- a/sql/sql_explain.h
+++ b/sql/sql_explain.h
@@ -232,9 +232,10 @@ public:
/* Expensive constant condition */
Item *exec_const_cond;
+ Item *outer_ref_cond;
/* HAVING condition */
- COND *having;
+ Item *having;
Item::cond_result having_value;
/* Global join attributes. In tabular form, they are printed on the first row */