Commit d278fb49 authored by Monty's avatar Monty

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

parent 4a602046
......@@ -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
......
......@@ -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;
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