mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-3798: EXPLAIN UPDATE/DELETE
- Address review feedback: rename nearly any name used by the new EXPLAIN code.
This commit is contained in:
@ -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);
|
||||
};
|
||||
|
Reference in New Issue
Block a user