Details
-
Bug
-
Status: In Review (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
Currently eliminated tables (both regular and derived) are not displayed in the
EXPLAIN/ANALYZE [FORMAT=JSON]
|
output at all. This can be confusing to the user. Those tables must be displayed in the following way:
+------+-------------+-------+------+---------------+------+---------+------+------+------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+-------+------+---------------+------+---------+------+------+------------+
|
| 1 | SIMPLE | t1 | NULL | NULL | NULL | NULL | NULL | NULL | Eliminated |
|
+------+-------------+-------+------+---------------+------+---------+------+------+------------+
|
In case of FORMAT=JSON they must be displayed like this:
{
|
"table": "t1"
|
"Eliminated": true
|
}
|
Attachments
Issue Links
- relates to
-
MDEV-26278 Table elimination does not work across derived tables
-
- Closed
-
Activity
A more interesting question is what to show when the derived table is eliminated (MDEV-26278 makes it possible):
Consider this query:
explain
|
select t1.*
|
from
|
t1 left join
|
(select t11.a as a, count(*) as b
|
from
|
t11 left join t12 on t12.pk=t11.b
|
group by
|
t11.a
|
) as TBL on TBL.a=t1.a;
|
After MDEV-26278 in 10.10, it prints this:
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
| 1 | PRIMARY | t1 | ALL | NULL | NULL | NULL | NULL | 10 | |
|
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
The question is should it print this:
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
| 1 | PRIMARY | t1 | ALL | NULL | NULL | NULL | NULL | 10 | |
|
| 1 | PRIMARY | <derived2> | NULL | NULL | NULL | NULL | NULL | NULL | Eliminated |
|
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
Or also print the subquery contents:
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
| 1 | PRIMARY | t1 | ALL | NULL | NULL | NULL | NULL | 10 | |
|
| 1 | PRIMARY | <derived2> | NULL | NULL | NULL | NULL | NULL | NULL | Eliminated |
|
| 2 | DERIVED | t11 | index | NULL | a | 4 | NULL | 1000 | |
|
+------+-------------+------------+-------+---------------+------+---------+-----------+------+-------------+
|
... and re-reading the first comment by oleg.smirnov, I see that it's neither of the above. It is (copy-pasting):
-- Whole derived table is eliminated
|
explain select t1.* from t1 left join
|
(select t11.a as a, count(*) as b
|
from t11 left join t12 on t12.pk=t11.b
|
group by t11.a) v2b on v2b.a=t1.a;
|
+------+-------------+------------+------+---------------+------+---------+------+------+------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+-------------+------------+------+---------------+------+---------+------+------+------------+
|
| 1 | PRIMARY | t1 | ALL | NULL | NULL | NULL | NULL | 2 | |
|
| NULL | NULL | <derived2> | NULL | NULL | NULL | NULL | NULL | NULL | Eliminated |
|
| NULL | NULL | t12 | NULL | NULL | NULL | NULL | NULL | NULL | Eliminated |
|
| NULL | NULL | t11 | NULL | NULL | NULL | NULL | NULL | NULL | Eliminated |
|
+------+-------------+------------+------+---------------+------+---------+------+------+------------+
|
That is, the subquery is printed but we can only see "Eliminated" for all tables in it.
After discussion we decided that the output must look like this.
MariaDB [mdev28869]> explain select t1.a from t1 left join t2 on t2.a=t1.a; |
+------+-------------+-------+------------+---------------+------+---------+------+------+-------+ |
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | |
+------+-------------+-------+------------+---------------+------+---------+------+------+-------+ |
| 1 | SIMPLE | t1 | ALL | NULL | NULL | NULL | NULL | 2 | | |
| 1 | SIMPLE | t2 | Eliminated | NULL | NULL | NULL | NULL | NULL | NULL | |
+------+-------------+-------+------------+---------------+------+---------+------+------+-------+ |
2 rows in set (0.028 sec) |
|
MariaDB [mdev28869]> explain select t1.* from t1 left join |
-> (select t11.a as a, count(*) as b |
-> from t11 left join t12 on t12.pk=t11.b |
-> group by t11.a) v2b on v2b.a=t1.a; |
+------+-------------+------------+------------+---------------+------+---------+------+------+-------+ |
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | |
+------+-------------+------------+------------+---------------+------+---------+------+------+-------+ |
| 1 | PRIMARY | t1 | ALL | NULL | NULL | NULL | NULL | 2 | | |
| 1 | PRIMARY | <derived2> | Eliminated | NULL | NULL | NULL | NULL | NULL | | |
| 2 | DERIVED | t12 | Eliminated | NULL | NULL | NULL | NULL | NULL | | |
| 2 | DERIVED | t11 | Eliminated | NULL | NULL | NULL | NULL | NULL | | |
+------+-------------+------------+------------+---------------+------+---------+------+------+-------+ |
|
MariaDB [mdev28869]> explain format=JSON select t1.a from t1 left join t2 on t2.a=t1.a; |
| {
|
"query_block": { |
"select_id": 1, |
"const_condition": "1", |
"nested_loop": [ |
{
|
"table": { |
"table_name": "t1", |
"access_type": "ALL", |
"rows": 2, |
"filtered": 100 |
}
|
},
|
{
|
"table": { |
"table_name": "t2", |
"access_type": "Eliminated" |
}
|
}
|
]
|
}
|
} |
|
|
MariaDB [mdev28869]> explain format=JSON select t1.* from t1 |
left join |
(select t11.a as a, count(*) as b |
from t11 left join t12 on t12.pk=t11.b group by t11.a) v2b on v2b.a=t1.a; |
| {
|
"query_block": { |
"select_id": 1, |
"const_condition": "1", |
"nested_loop": [ |
{
|
"table": { |
"table_name": "t1", |
"access_type": "ALL", |
"rows": 2, |
"filtered": 100 |
}
|
},
|
{
|
"table": { |
"table_name": "<derived2>", |
"access_type": "Eliminated", |
"materialized": { |
"query_block": { |
"select_id": 2, |
"eliminated": true, |
"nested_loop": [ |
{
|
"table": { |
"table_name": "t12", |
"access_type": "Eliminated" |
}
|
},
|
{
|
"table": { |
"table_name": "t11", |
"access_type": "Eliminated" |
}
|
}
|
]
|
}
|
}
|
}
|
}
|
]
|
}
|
} |
|
The proposed format of the output is as follows. Suggestions/corrections are welcome.
----------------------------
-- REGULAR TABLES
----------------------------
-- Elimination of a single table
-- Elimination of multiple tables
----------------------------
-- DERIVED TABLES
----------------------------
-- Whole derived table is eliminated
-- Only one table from the derived one is eliminated
Same queries explained in JSON format
-- Elimination of a single table
| {
{
}
},
{
}
}
]
}
} |
-- Elimination of multiple tables
| {
{
}
},
{
}
},
{
}
}
]
}
} |
-- Whole derived table is eliminated (note that "eliminated" is printed instead of "materialized" for the derived table)
| {
{
}
},
{
{
}
},
{
}
}
]
}
}
}
]
}
} |
-- Only one table from the derived one is eliminated
| {
{
}
},
{
{
}
},
{
}
}
]
}
}
}
}
]
}
} |
If the proposed format is OK I'll move on with updating test cases and cleaning up the code.