mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MWL#17: Table elimination
- Do not show eliminated tables in the output of EXPLAIN EXTENDED
This commit is contained in:
@ -211,9 +211,6 @@ typedef struct st_join_table {
|
||||
/** Bitmap of nested joins this table is part of */
|
||||
nested_join_map embedding_map;
|
||||
|
||||
//psergey-todo: more justified place
|
||||
bool eliminated;
|
||||
|
||||
void cleanup();
|
||||
inline bool is_using_loose_index_scan()
|
||||
{
|
||||
@ -289,6 +286,8 @@ public:
|
||||
*/
|
||||
bool resume_nested_loop;
|
||||
table_map const_table_map,found_const_table_map;
|
||||
|
||||
table_map eliminated_tables;
|
||||
/*
|
||||
Bitmap of all inner tables from outer joins
|
||||
*/
|
||||
|
Reference in New Issue
Block a user