diff options
Diffstat (limited to 'sql/sql_explain.cc')
-rw-r--r-- | sql/sql_explain.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/sql_explain.cc b/sql/sql_explain.cc index 8b3e6724c76..dae5127cbf8 100644 --- a/sql/sql_explain.cc +++ b/sql/sql_explain.cc @@ -862,6 +862,12 @@ void Explain_select::print_explain_json(Explain_query *query, writer->add_member("const_condition"); write_item(writer, exec_const_cond); } + if (outer_ref_cond) + { + writer->add_member("outer_ref_condition"); + write_item(writer, outer_ref_cond); + } + /* we do not print HAVING which always evaluates to TRUE */ if (having || (having_value == Item::COND_FALSE)) { |