summaryrefslogtreecommitdiff
path: root/sql/sql_join_cache.h
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2014-06-25 15:15:38 +0400
committerSergei Petrunia <psergey@askmonty.org>2014-06-25 15:15:38 +0400
commit7711999d8b89d9bcf394e78a79c3c25013e249d6 (patch)
tree4c0a80ad7412c35e074e3ef91b754f71e821289a /sql/sql_join_cache.h
parentc3cfb6910a50f7ff094b03f9ef0b5d908f5e4760 (diff)
downloadmariadb-git-7711999d8b89d9bcf394e78a79c3c25013e249d6.tar.gz
MDEV-406: ANALYZE $stmt: add support for BNL join buffering
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 568cc91ecf7..bc449a3fff9 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_explain_bka_type;
+class EXPLAIN_BKA_TYPE;
/*
JOIN_CACHE is the base class to support the implementations of
@@ -659,7 +659,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 *explain);
+ virtual void save_explain_data(EXPLAIN_BKA_TYPE *explain);
THD *thd();
@@ -1337,7 +1337,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 *explain);
+ void save_explain_data(EXPLAIN_BKA_TYPE *explain);
};
@@ -1428,5 +1428,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 *explain);
+ void save_explain_data(EXPLAIN_BKA_TYPE *explain);
};