summaryrefslogtreecommitdiff
path: root/mysql-test/t/range.test
diff options
context:
space:
mode:
authorGeorgi Kodinov <joro@sun.com>2009-10-16 11:42:16 +0300
committerGeorgi Kodinov <joro@sun.com>2009-10-16 11:42:16 +0300
commitd80e35f26f814bd8c9f976e510e5b2dbda654d12 (patch)
treea913e34c54e912f0f50355b4e52c3bf12fea8e17 /mysql-test/t/range.test
parent0da66a091b3e5dcc68d304c7b91ecf08368d34c5 (diff)
downloadmariadb-git-d80e35f26f814bd8c9f976e510e5b2dbda654d12.tar.gz
Revert the fix for bug #47123 until test suite failures are resolved.
Diffstat (limited to 'mysql-test/t/range.test')
-rw-r--r--mysql-test/t/range.test11
1 files changed, 0 insertions, 11 deletions
diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test
index f0fa99f3d95..dc119b6a77e 100644
--- a/mysql-test/t/range.test
+++ b/mysql-test/t/range.test
@@ -1171,14 +1171,3 @@ a < 5 OR
a < 10;
DROP TABLE t1, t2, t3;
-
---echo #
---echo # Bug #47123: Endless 100% CPU loop with STRAIGHT_JOIN
---echo #
-
-CREATE TABLE t1(a INT, KEY(a));
-INSERT INTO t1 VALUES (1), (NULL);
-SELECT * FROM t1 WHERE a <> NULL and (a <> NULL or a <= NULL);
-DROP TABLE t1;
-
---echo End of 5.1 tests