1
0
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:
Sergey Petrunia
2009-06-14 14:01:10 +04:00
parent fd485ad988
commit 402e58cf78
5 changed files with 45 additions and 16 deletions

View File

@ -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
*/