summaryrefslogtreecommitdiff
path: root/mysql-test/r/range.result
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
commit6b81bff83ce0982bc1eb65f7f87db396de18b0b9 (patch)
treea913e34c54e912f0f50355b4e52c3bf12fea8e17 /mysql-test/r/range.result
parentf79064c4d449abec1a96380a5494aba5c3f16994 (diff)
downloadmariadb-git-6b81bff83ce0982bc1eb65f7f87db396de18b0b9.tar.gz
Revert the fix for bug #47123 until test suite failures are resolved.
Diffstat (limited to 'mysql-test/r/range.result')
-rw-r--r--mysql-test/r/range.result9
1 files changed, 0 insertions, 9 deletions
diff --git a/mysql-test/r/range.result b/mysql-test/r/range.result
index 0d44e79b39a..c98a7696ea6 100644
--- a/mysql-test/r/range.result
+++ b/mysql-test/r/range.result
@@ -1398,12 +1398,3 @@ a < 10;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t3 range a a 5 NULL 8 Using where; Using index
DROP TABLE t1, t2, t3;
-#
-# Bug #47123: Endless 100% CPU loop with STRAIGHT_JOIN
-#
-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);
-a
-DROP TABLE t1;
-End of 5.1 tests