Make rocksdb.index_merge_rocksdb2 test stable

This commit is contained in:
Sergei Petrunia 2017-10-20 13:36:55 +03:00
parent 607d8f9e97
commit 7c42b091b7
2 changed files with 2 additions and 1 deletions

View File

@ -125,6 +125,7 @@ analyze table t1;
-- enable_query_log
# One row results tests for cases where a single row matches all conditions
--replace_column 9 #
explain select key1,key2 from t1 where key1=100 and key2=100;
select key1,key2 from t1 where key1=100 and key2=100;
if (!$skip_ror_EXPLAIN_for_MyRocks)

View File

@ -603,7 +603,7 @@ count(*)
64801
explain select key1,key2 from t1 where key1=100 and key2=100;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index_merge key1,key2 key2,key1 5,5 NULL 2 Using intersect(key2,key1); Using where; Using index
1 SIMPLE t1 index_merge key1,key2 key2,key1 5,5 NULL # Using intersect(key2,key1); Using where; Using index
select key1,key2 from t1 where key1=100 and key2=100;
key1 key2
100 100