summaryrefslogtreecommitdiff
path: root/mysql-test/include/index_merge2.inc
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2012-09-10 17:26:54 +0300
committerMichael Widenius <monty@askmonty.org>2012-09-10 17:26:54 +0300
commit6f94b5c76d51e655d36198d177972caa18089e31 (patch)
tree58d5969a4e7682aab5219f0a20597b72e2ba89c0 /mysql-test/include/index_merge2.inc
parent1539f91267a8ca11b137444a4cb87c61febfb05c (diff)
downloadmariadb-git-6f94b5c76d51e655d36198d177972caa18089e31.tar.gz
Fixed random test failure
mysql-test/include/index_merge2.inc: InnoDB did report 9 or 7 rows in explain
Diffstat (limited to 'mysql-test/include/index_merge2.inc')
-rw-r--r--mysql-test/include/index_merge2.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/include/index_merge2.inc b/mysql-test/include/index_merge2.inc
index 1d6b82e1787..c50a45a9923 100644
--- a/mysql-test/include/index_merge2.inc
+++ b/mysql-test/include/index_merge2.inc
@@ -343,6 +343,7 @@ alter table t1 add index i3(key3);
update t1 set key2=key1,key3=key1;
# to test the bug, the following must use "sort_union":
+--replace_column 9 REF
explain select * from t1 where (key3 > 30 and key3<35) or (key2 >32 and key2 < 40);
select * from t1 where (key3 > 30 and key3<35) or (key2 >32 and key2 < 40);
drop table t1;