summaryrefslogtreecommitdiff
path: root/sql/sql_join_cache.h
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-10-05 09:58:22 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-10-05 09:58:22 +0400
commitfedf769f0b2001f8294c2b44dbcaca1e562f82a9 (patch)
treea1c998b5c4ea47636023f142f86b607cd5521717 /sql/sql_join_cache.h
parentf5fba6564b447369575bc129aac89d347368957e (diff)
downloadmariadb-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.h')
-rw-r--r--sql/sql_join_cache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_join_cache.h b/sql/sql_join_cache.h
index 75589c3395f..0b03f2b8bab 100644
--- a/sql/sql_join_cache.h
+++ b/sql/sql_join_cache.h
@@ -63,7 +63,7 @@ typedef struct st_cache_field {
class JOIN_TAB_SCAN;
-struct st_qpf_bka_type;
+struct st_explain_bka_type;
/*
JOIN_CACHE is the base class to support the implementations of
@@ -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_qpf(struct st_qpf_bka_type *qpf);
+ virtual void save_explain_data(struct st_explain_bka_type *qpf);
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_qpf(struct st_qpf_bka_type *qpf);
+ void save_explain_data(struct st_explain_bka_type *qpf);
};
@@ -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_qpf(struct st_qpf_bka_type *qpf);
+ void save_explain_data(struct st_explain_bka_type *qpf);
};