1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-9652: EXPLAIN FORMAT=JSON should show outer_ref_cond

Show outer_ref_condition in EXPLAIN FORMAT=JSON output.
This commit is contained in:
Sergei Petrunia
2016-02-28 18:18:29 +03:00
parent 0dbfc0fde7
commit ab44e892d8
5 changed files with 59 additions and 1 deletions

View File

@ -24252,6 +24252,7 @@ int JOIN::save_explain_data_intern(Explain_query *output, bool need_tmp_table,
xpl_sel->using_filesort= true;
xpl_sel->exec_const_cond= exec_const_cond;
xpl_sel->outer_ref_cond= outer_ref_cond;
if (tmp_having)
xpl_sel->having= tmp_having;
else