Skip to content

Commit e7d50ef

Browse files
committed
MDEV-7907 tokudb.cluster_filter_unpack_varchar_hidden fails sporadically in buildbot
Index access becomes range every once in a while. Masked the value in addition to other already masked columns
1 parent 5f2f3c4 commit e7d50ef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

storage/tokudb/mysql-test/tokudb/r/cluster_filter_unpack_varchar_hidden.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,14 @@ a b c d e f
182182
3 30 200 2000 20000 200000
183183
explain select * from t1 where b > "0";
184184
id select_type table type possible_keys key key_len ref rows Extra
185-
1 SIMPLE t1 index b b NULL NULL NULL; Using where; Using index
185+
1 SIMPLE t1 <type> b b NULL NULL NULL; Using where; Using index
186186
select * from t1 where b > "0";
187187
a b c d e f
188188
2 20 100 1000 10000 100000
189189
3 30 200 2000 20000 200000
190190
explain select * from t1 where d > "0";
191191
id select_type table type possible_keys key key_len ref rows Extra
192-
1 SIMPLE t1 index d d NULL NULL NULL; Using where; Using index
192+
1 SIMPLE t1 <type> d d NULL NULL NULL; Using where; Using index
193193
select * from t1 where d > "0";
194194
a b c d e f
195195
2 20 100 1000 10000 100000

storage/tokudb/mysql-test/tokudb/t/cluster_filter_unpack_varchar_hidden.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ alter table t1 add key d(d,a) clustering=yes, add key b(b) clustering=yes;
8282
explain select * from t1;
8383
select * from t1;
8484

85-
--replace_column 7 NULL 9 NULL;
85+
--replace_column 4 <type> 7 NULL 9 NULL;
8686
explain select * from t1 where b > "0";
8787
select * from t1 where b > "0";
8888

89-
--replace_column 7 NULL 9 NULL;
89+
--replace_column 4 <type> 7 NULL 9 NULL;
9090
explain select * from t1 where d > "0";
9191
select * from t1 where d > "0";
9292

0 commit comments

Comments
 (0)