diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-10-05 13:19:45 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-10-05 13:19:45 +0400 |
commit | 72bc6d7364f7cf6cae49c74cf1e56832053f91eb (patch) | |
tree | 063f21a3c6205722b5d14b76a43b6543bce83808 /sql/sql_join_cache.h | |
parent | 6a7f8af3f9ca95163cba3c7efdf04944378fb8d3 (diff) | |
download | mariadb-git-72bc6d7364f7cf6cae49c74cf1e56832053f91eb.tar.gz |
MDEV-3798: EXPLAIN UPDATE/DELETE
- Address review feedback: more renames
Diffstat (limited to 'sql/sql_join_cache.h')
-rw-r--r-- | sql/sql_join_cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_join_cache.h b/sql/sql_join_cache.h index 0b03f2b8bab..9dae7fb24e0 100644 --- a/sql/sql_join_cache.h +++ b/sql/sql_join_cache.h @@ -658,7 +658,7 @@ public: enum_nested_loop_state join_records(bool skip_last); /* Add a comment on the join algorithm employed by the join cache */ - virtual void save_explain_data(struct st_explain_bka_type *qpf); + virtual void save_explain_data(struct st_explain_bka_type *explain); THD *thd(); @@ -1336,7 +1336,7 @@ public: /* Check index condition of the joined table for a record from BKA cache */ bool skip_index_tuple(range_id_t range_info); - void save_explain_data(struct st_explain_bka_type *qpf); + void save_explain_data(struct st_explain_bka_type *explain); }; @@ -1427,5 +1427,5 @@ public: /* Check index condition of the joined table for a record from BKAH cache */ bool skip_index_tuple(range_id_t range_info); - void save_explain_data(struct st_explain_bka_type *qpf); + void save_explain_data(struct st_explain_bka_type *explain); }; |