1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +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

@ -63,7 +63,7 @@ insert into t1 (b) values ("hello"),("my"),("world");
create table t2 (key (b)) select * from t1;
explain select * from t2 where b="world";
id select_type table type possible_keys key key_len ref rows Extra
1 FIRST t2 ref B B 21 const 1 where used
1 SIMPLE t2 ref B B 21 const 1 where used
select * from t2 where b="world";
a B
3 world