diff options
author | unknown <bell@sanja.is.com.ua> | 2002-10-03 18:47:04 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-10-03 18:47:04 +0300 |
commit | 5e3de4a43e2bbd824524f9a5f34f21ccd0a6a991 (patch) | |
tree | a10d91a6ce2aa4dc6b0104292912675442cafafb /mysql-test/r/create.result | |
parent | a03f5fd228ca1a835084f24e092ee1ce60e5a717 (diff) | |
download | mariadb-git-5e3de4a43e2bbd824524f9a5f34f21ccd0a6a991.tar.gz |
fixing EXPLAIN select types
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r-- | mysql-test/r/create.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index 41a977695a6..625ef684698 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -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 |