summaryrefslogtreecommitdiff
path: root/sql/sql_explain.h
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2015-04-12 04:59:34 +0300
committerSergei Petrunia <psergey@askmonty.org>2015-04-12 04:59:34 +0300
commit0719df781e5600bceeaaec0e97367f4420a491d0 (patch)
tree50fd2015cc044edfbf9e64fccfd16d9b5ce1aa18 /sql/sql_explain.h
parent4938b822634b173c0d7ef882f721b553b223fadd (diff)
parent37e87b587396319e607fb8626b6f2a74e66d25a4 (diff)
downloadmariadb-git-0719df781e5600bceeaaec0e97367f4420a491d0.tar.gz
Merge
Diffstat (limited to 'sql/sql_explain.h')
-rw-r--r--sql/sql_explain.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/sql_explain.h b/sql/sql_explain.h
index 2513e03cf1c..61720ca8d76 100644
--- a/sql/sql_explain.h
+++ b/sql/sql_explain.h
@@ -51,6 +51,9 @@ it into the slow query log.
*/
+#ifndef SQL_EXPLAIN_INCLUDED
+#define SQL_EXPLAIN_INCLUDED
+
class String_list: public List<char>
{
public:
@@ -471,6 +474,8 @@ class EXPLAIN_BKA_TYPE
public:
EXPLAIN_BKA_TYPE() : join_alg(NULL) {}
+ size_t join_buffer_size;
+
bool incremental;
/*
@@ -609,6 +614,7 @@ public:
/* id and 'select_type' are cared-of by the parent Explain_select */
StringBuffer<32> table_name;
StringBuffer<32> used_partitions;
+ String_list used_partitions_list;
// valid with ET_USING_MRR
StringBuffer<32> mrr_type;
StringBuffer<32> firstmatch_table_name;
@@ -732,6 +738,7 @@ public:
const char *select_type;
StringBuffer<32> used_partitions;
+ String_list used_partitions_list;
bool used_partitions_set;
bool impossible_where;
@@ -842,3 +849,4 @@ public:
};
+#endif //SQL_EXPLAIN_INCLUDED