diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-06-27 18:28:14 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-06-27 18:28:14 +0400 |
commit | ef47cc1f091f76740212e125fe91f113028cbaa8 (patch) | |
tree | da246c3fb17d79c00d4491406edffbbd373b9fbb /sql/sql_show.cc | |
parent | 639baee61bdfefe124414db6b12d40061a086e5b (diff) | |
parent | befacafd73d4892f2ad84991ad7c2d4626e45c47 (diff) | |
download | mariadb-git-ef47cc1f091f76740212e125fe91f113028cbaa8.tar.gz |
[SHOW] EXPLAIN UPDATE/DELETE, code re-structuring
- Merge with 10.0-base
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r-- | sql/sql_show.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 83303da1c71..838214ab0c7 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -2345,8 +2345,8 @@ void Show_explain_request::call_in_target_thread() DBUG_ASSERT(current_thd == target_thd); set_current_thd(request_thd); - if (target_thd->lex->unit.print_explain(explain_buf, 0 /* explain flags*/, - &printed_anything)) + if (target_thd->lex->print_explain(explain_buf, 0 /* explain flags*/, + &printed_anything)) { failed_to_produce= TRUE; } |