mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge branch '10.1' into 10.2
This commit is contained in:
@ -1370,7 +1370,8 @@ public:
|
||||
enum join_optimization_state { NOT_OPTIMIZED=0,
|
||||
OPTIMIZATION_IN_PROGRESS=1,
|
||||
OPTIMIZATION_DONE=2};
|
||||
bool optimized; ///< flag to avoid double optimization in EXPLAIN
|
||||
// state of JOIN optimization
|
||||
enum join_optimization_state optimization_state;
|
||||
bool initialized; ///< flag to avoid double init_execution calls
|
||||
|
||||
Explain_select *explain;
|
||||
@ -1450,7 +1451,7 @@ public:
|
||||
items2.reset();
|
||||
items3.reset();
|
||||
zero_result_cause= 0;
|
||||
optimized= 0;
|
||||
optimization_state= JOIN::NOT_OPTIMIZED;
|
||||
have_query_plan= QEP_NOT_PRESENT_YET;
|
||||
initialized= 0;
|
||||
cleaned= 0;
|
||||
|
Reference in New Issue
Block a user