1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fix test results that may change from run to run

Added comments (from code review on pull)
This commit is contained in:
monty@mysql.com
2004-12-12 19:54:26 +02:00
parent 3b14ba64fd
commit b4dc75c877
4 changed files with 13 additions and 7 deletions

View File

@ -622,7 +622,7 @@ qq
*a *a*a *
explain select * from t1 where v='a';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref v v 13 const 7 Using where
1 SIMPLE t1 ref v v 13 const # Using where
drop table t1;
create table t1 (a char(10), unique using btree (a)) engine=heap;
insert into t1 values ('a');