innodb.test, innodb.result:

  Remove nondeterministic EXPLAIN SELECT which gives on 64-bit platforms a slightly different estimate (sometimes we should study why we get different results on 64-bit and 32-bit)
parent 00c557b9
...@@ -1238,9 +1238,6 @@ explain select * from t1 where c between 1 and 10000; ...@@ -1238,9 +1238,6 @@ explain select * from t1 where c between 1 and 10000;
table type possible_keys key key_len ref rows Extra table type possible_keys key key_len ref rows Extra
t1 range c c 5 NULL 1 Using where t1 range c c 5 NULL 1 Using where
update t1 set c=a; update t1 set c=a;
explain select * from t1 where c between 1 and 10000;
table type possible_keys key key_len ref rows Extra
t1 ALL c NULL NULL NULL 27682 Using where
drop table t1,t2; drop table t1,t2;
create table t1 (id int primary key auto_increment, fk int, index index_fk (fk)) type=innodb; create table t1 (id int primary key auto_increment, fk int, index index_fk (fk)) type=innodb;
insert into t1 (id) values (null),(null),(null),(null),(null); insert into t1 (id) values (null),(null),(null),(null),(null);
......
...@@ -830,7 +830,6 @@ insert into t1 (a) select b from t2; ...@@ -830,7 +830,6 @@ insert into t1 (a) select b from t2;
select count(*) from t1; select count(*) from t1;
explain select * from t1 where c between 1 and 10000; explain select * from t1 where c between 1 and 10000;
update t1 set c=a; update t1 set c=a;
explain select * from t1 where c between 1 and 10000;
drop table t1,t2; drop table t1,t2;
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment