diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-10-05 09:58:22 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-10-05 09:58:22 +0400 |
commit | fedf769f0b2001f8294c2b44dbcaca1e562f82a9 (patch) | |
tree | a1c998b5c4ea47636023f142f86b607cd5521717 /sql/sql_join_cache.cc | |
parent | f5fba6564b447369575bc129aac89d347368957e (diff) | |
download | mariadb-git-fedf769f0b2001f8294c2b44dbcaca1e562f82a9.tar.gz |
MDEV-3798: EXPLAIN UPDATE/DELETE
- Address review feedback: rename nearly any name used by the new EXPLAIN code.
Diffstat (limited to 'sql/sql_join_cache.cc')
-rw-r--r-- | sql/sql_join_cache.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/sql_join_cache.cc b/sql/sql_join_cache.cc index 7710db5c7ba..040e596d283 100644 --- a/sql/sql_join_cache.cc +++ b/sql/sql_join_cache.cc @@ -2568,7 +2568,7 @@ finish: none */ -void JOIN_CACHE::save_qpf(struct st_qpf_bka_type *qpf) +void JOIN_CACHE::save_explain_data(struct st_explain_bka_type *qpf) { qpf->incremental= test(prev_cache); @@ -2613,16 +2613,16 @@ static void add_mrr_explain_info(String *str, uint mrr_mode, handler *file) } } -void JOIN_CACHE_BKA::save_qpf(struct st_qpf_bka_type *qpf) +void JOIN_CACHE_BKA::save_explain_data(struct st_explain_bka_type *qpf) { - JOIN_CACHE::save_qpf(qpf); + JOIN_CACHE::save_explain_data(qpf); add_mrr_explain_info(&qpf->mrr_type, mrr_mode, join_tab->table->file); } -void JOIN_CACHE_BKAH::save_qpf(struct st_qpf_bka_type *qpf) +void JOIN_CACHE_BKAH::save_explain_data(struct st_explain_bka_type *qpf) { - JOIN_CACHE::save_qpf(qpf); + JOIN_CACHE::save_explain_data(qpf); add_mrr_explain_info(&qpf->mrr_type, mrr_mode, join_tab->table->file); } |