summaryrefslogtreecommitdiff
path: root/mysql-test/t/join.test
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2013-08-28 09:14:57 -0700
committerIgor Babaev <igor@askmonty.org>2013-08-28 09:14:57 -0700
commit1906f1388e4d13b8a3328b58489dae862c6c8595 (patch)
tree3ece378d39331d450b6a71365aac4fe7cbb3bef4 /mysql-test/t/join.test
parent34aa69564d611b11a0df7cce85a9c4f82f1c6b9f (diff)
downloadmariadb-git-1906f1388e4d13b8a3328b58489dae862c6c8595.tar.gz
Fixed bug mdev-4959.
The fix for mdev-4420 was not quite correct. This patch corrects it.
Diffstat (limited to 'mysql-test/t/join.test')
-rw-r--r--mysql-test/t/join.test16
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/t/join.test b/mysql-test/t/join.test
index e42cbc82745..203a7d377a5 100644
--- a/mysql-test/t/join.test
+++ b/mysql-test/t/join.test
@@ -1141,5 +1141,21 @@ DROP TABLE t1,t2,t3,t4,t5;
--error ER_PARSE_ERROR
SELECT * FROM t5 JOIN (t1 JOIN t2 UNION SELECT * FROM t3 JOIN t4);
+--echo #
+--echo # MDEV-4959: join of const table with NULL fields
+--echo #
+
+CREATE TABLE t1 (i1 int) ENGINE=MyISAM;
+INSERT INTO t1 VALUES (NULL);
+CREATE TABLE t2 (i2 int, a int, b int) ENGINE=MyISAM;
+CREATE ALGORITHM=TEMPTABLE VIEW v2 AS SELECT * FROM t2;
+INSERT INTO t2 VALUES (NULL,1,2),(NULL,2,3);
+
+SELECT * FROM t1 JOIN v2 ON i1 = i2 WHERE a < b;
+EXPLAIN EXTENDED
+SELECT * FROM t1 JOIN v2 ON i1 = i2 WHERE a < b;
+
+DROP VIEW v2;
+DROP TABLE t1,t2;
SET optimizer_switch=@save_optimizer_switch;