Commit 7c42b091 authored by Sergei Petrunia's avatar Sergei Petrunia

Make rocksdb.index_merge_rocksdb2 test stable

parent 607d8f9e
......@@ -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)
......
......@@ -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
......
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