1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

fixing EXPLAIN select types

This commit is contained in:
unknown
2002-10-03 18:47:04 +03:00
parent c9a2b58986
commit f094b6af4c
25 changed files with 189 additions and 187 deletions

View File

@@ -35,8 +35,8 @@ D E a a
a a a a
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
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
1 SIMPLE t1 ALL a NULL NULL NULL 5
1 SIMPLE 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