mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
new EXPLAIN
fixed bug in mysql-test/create-test-result fixed bug in union-subselect engine
This commit is contained in:
@ -34,9 +34,9 @@ C c a a
|
||||
D E a a
|
||||
a a a a
|
||||
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
|
||||
table type possible_keys key key_len ref rows Extra
|
||||
t1 ALL a NULL NULL NULL 5
|
||||
t2 ALL b NULL NULL NULL 5 where used
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 FIRST t1 ALL a NULL NULL NULL 5
|
||||
1 FIRST t2 ALL b NULL NULL NULL 5 where used
|
||||
select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B order by binary t1.a,t2.a;
|
||||
a b a b
|
||||
A B a a
|
||||
|
Reference in New Issue
Block a user