Fixed tokudb test result to make it stable (was altering between index and range)

This commit is contained in:
Monty 2015-10-08 09:58:44 +03:00
parent 4a602046c0
commit d278fb4922
2 changed files with 32 additions and 34 deletions

View File

@ -9,7 +9,7 @@ insert into t1 values (4,40,400,4000,40000,400000);
insert into t1 values (5,50,500,5000,50000,500000);
explain select * from t1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index NULL b NULL NULL NULL; Using index
1 SIMPLE t1 index NULL b NULL NULL NULL Using index
select * from t1;
a b c d e f
1 10 100 1000 10000 100000
@ -19,7 +19,7 @@ a b c d e f
5 50 500 5000 50000 500000
explain select * from t1 where b > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index b b NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index b b NULL NULL NULL Using where; Using index
select * from t1 where b > 0;
a b c d e f
1 10 100 1000 10000 100000
@ -29,7 +29,7 @@ a b c d e f
5 50 500 5000 50000 500000
explain select * from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index d d NULL NULL NULL Using where; Using index
select * from t1 where d > 0;
a b c d e f
1 10 100 1000 10000 100000
@ -39,7 +39,7 @@ a b c d e f
5 50 500 5000 50000 500000
explain select a from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index d d NULL NULL NULL Using where; Using index
select a from t1 where d > 0;
a
1
@ -71,7 +71,7 @@ e f
update t1 set a = a+1, b = b+10;
explain select * from t1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index NULL b NULL NULL NULL; Using index
1 SIMPLE t1 index NULL b NULL NULL NULL Using index
select * from t1;
a b c d e f
2 20 100 1000 10000 100000
@ -81,7 +81,7 @@ a b c d e f
6 60 500 5000 50000 500000
explain select * from t1 where b > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index b b NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index b b NULL NULL NULL Using where; Using index
select * from t1 where b > 0;
a b c d e f
2 20 100 1000 10000 100000
@ -91,7 +91,7 @@ a b c d e f
6 60 500 5000 50000 500000
explain select * from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index d d NULL NULL NULL Using where; Using index
select * from t1 where d > 0;
a b c d e f
2 20 100 1000 10000 100000
@ -101,7 +101,7 @@ a b c d e f
6 60 500 5000 50000 500000
explain select a from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index d d NULL NULL NULL Using where; Using index
select a from t1 where d > 0;
a
2
@ -133,28 +133,28 @@ e f
delete from t1 where b > 35;
explain select * from t1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index NULL b NULL NULL NULL; Using index
1 SIMPLE t1 index NULL b NULL NULL NULL Using index
select * from t1;
a b c d e f
2 20 100 1000 10000 100000
3 30 200 2000 20000 200000
explain select * from t1 where b > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index b b NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index b b NULL NULL NULL Using where; Using index
select * from t1 where b > 0;
a b c d e f
2 20 100 1000 10000 100000
3 30 200 2000 20000 200000
explain select * from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index d d NULL NULL NULL Using where; Using index
select * from t1 where d > 0;
a b c d e f
2 20 100 1000 10000 100000
3 30 200 2000 20000 200000
explain select a from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 index d d NULL NULL NULL Using where; Using index
select a from t1 where d > 0;
a
2
@ -175,28 +175,28 @@ alter table t1 drop index b, drop index d;
alter table t1 add key b(b) clustering=yes, add index d(d,a) clustering=yes;
explain select * from t1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index NULL b NULL NULL NULL; Using index
1 SIMPLE t1 index NULL b NULL NULL NULL Using index
select * from t1;
a b c d e f
2 20 100 1000 10000 100000
3 30 200 2000 20000 200000
explain select * from t1 where b > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index b b NULL NULL NULL; Using where; Using index
1 SIMPLE t1 X b b NULL NULL NULL Using where; Using index
select * from t1 where b > 0;
a b c d e f
2 20 100 1000 10000 100000
3 30 200 2000 20000 200000
explain select * from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 X d d NULL NULL NULL Using where; Using index
select * from t1 where d > 0;
a b c d e f
2 20 100 1000 10000 100000
3 30 200 2000 20000 200000
explain select a from t1 where d > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 NULL d d NULL NULL NULL; Using where; Using index
1 SIMPLE t1 NULL d d NULL NULL NULL Using where; Using index
select a from t1 where d > 0;
a
2

View File

@ -14,19 +14,19 @@ insert into t1 values (4,40,400,4000,40000,400000);
insert into t1 values (5,50,500,5000,50000,500000);
# ignore key_len and rows columns
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1;
select * from t1;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1 where b > 0;
select * from t1 where b > 0;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1 where d > 0;
select * from t1 where d > 0;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select a from t1 where d > 0;
select a from t1 where d > 0;
select e,f from t1 where c > 0;
@ -34,19 +34,19 @@ select e,f from t1 where b > 0;
select e,f from t1 where d > 0;
update t1 set a = a+1, b = b+10;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1;
select * from t1;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1 where b > 0;
select * from t1 where b > 0;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1 where d > 0;
select * from t1 where d > 0;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select a from t1 where d > 0;
select a from t1 where d > 0;
select e,f from t1 where c > 0;
@ -54,19 +54,19 @@ select e,f from t1 where b > 0;
select e,f from t1 where d > 0;
delete from t1 where b > 35;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1;
select * from t1;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1 where b > 0;
select * from t1 where b > 0;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1 where d > 0;
select * from t1 where d > 0;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select a from t1 where d > 0;
select a from t1 where d > 0;
select e,f from t1 where c > 0;
@ -78,25 +78,23 @@ alter table t1 drop index b, drop index d;
alter table t1 add key b(b) clustering=yes, add index d(d,a) clustering=yes;
--replace_column 7 NULL 9 NULL;
--replace_column 7 NULL 9 NULL
explain select * from t1;
select * from t1;
--replace_column 7 NULL 9 NULL;
--replace_column 4 X 7 NULL 9 NULL
explain select * from t1 where b > 0;
select * from t1 where b > 0;
--replace_column 7 NULL 9 NULL;
--replace_column 4 X 7 NULL 9 NULL
explain select * from t1 where d > 0;
select * from t1 where d > 0;
--replace_column 4 NULL 7 NULL 9 NULL;
--replace_column 4 NULL 7 NULL 9 NULL
explain select a from t1 where d > 0;
select a from t1 where d > 0;
select e,f from t1 where c > 0;
select e,f from t1 where b > 0;
select e,f from t1 where d > 0;
DROP TABLE t1;