summaryrefslogtreecommitdiff
path: root/mysql-test/r/compare.result
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2002-10-03 18:47:04 +0300
committerunknown <bell@sanja.is.com.ua>2002-10-03 18:47:04 +0300
commitf094b6af4c5c32bfda7f74461d47675ab61722a0 (patch)
treea10d91a6ce2aa4dc6b0104292912675442cafafb /mysql-test/r/compare.result
parentc9a2b58986635015b3f3867999ef3fafa2bd2728 (diff)
downloadmariadb-git-f094b6af4c5c32bfda7f74461d47675ab61722a0.tar.gz
fixing EXPLAIN select types
Diffstat (limited to 'mysql-test/r/compare.result')
-rw-r--r--mysql-test/r/compare.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/compare.result b/mysql-test/r/compare.result
index be11de8ebb9..10f149e7a9b 100644
--- a/mysql-test/r/compare.result
+++ b/mysql-test/r/compare.result
@@ -3,7 +3,7 @@ CREATE TABLE t1 (id CHAR(12) not null, PRIMARY KEY (id));
insert into t1 values ('000000000001'),('000000000002');
explain select * from t1 where id=000000000001;
id select_type table type possible_keys key key_len ref rows Extra
-1 FIRST t1 index PRIMARY PRIMARY 12 NULL 2 where used; Using index
+1 SIMPLE t1 index PRIMARY PRIMARY 12 NULL 2 where used; Using index
select * from t1 where id=000000000001;
id
000000000001