mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
- Removed two EXPLAIN SELECT statements from the InnoDB test suite
(the results are nondeterministic and provide different output on 32bit and 64bit architectures)
This commit is contained in:
@ -1225,12 +1225,6 @@ insert into t1 (a) select b from t2;
|
|||||||
select count(*) from t1;
|
select count(*) from t1;
|
||||||
count(*)
|
count(*)
|
||||||
29267
|
29267
|
||||||
explain select a from t1 where a between 1 and 10000;
|
|
||||||
table type possible_keys key key_len ref rows Extra
|
|
||||||
t1 range PRIMARY PRIMARY 4 NULL 14745 Using where; Using index
|
|
||||||
explain select * from t1 where a between 1 and 10000;
|
|
||||||
table type possible_keys key key_len ref rows Extra
|
|
||||||
t1 range PRIMARY PRIMARY 4 NULL 14745 Using where
|
|
||||||
explain select * from t1 where c between 1 and 10000;
|
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
|
||||||
|
@ -823,8 +823,6 @@ insert into t1 (a) select b from t2;
|
|||||||
insert into t2 (a) select b from t1;
|
insert into t2 (a) select b from t1;
|
||||||
insert into t1 (a) select b from t2;
|
insert into t1 (a) select b from t2;
|
||||||
select count(*) from t1;
|
select count(*) from t1;
|
||||||
explain select a from t1 where a between 1 and 10000;
|
|
||||||
explain select * from t1 where a between 1 and 10000;
|
|
||||||
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;
|
explain select * from t1 where c between 1 and 10000;
|
||||||
|
Reference in New Issue
Block a user