1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Revert the fix for bug #47123 until test suite failures are resolved.

This commit is contained in:
Georgi Kodinov
2009-10-16 11:42:16 +03:00
parent f79064c4d4
commit 6b81bff83c
3 changed files with 0 additions and 31 deletions

View File

@@ -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