diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-08-28 21:21:12 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-08-28 21:21:12 +0400 |
commit | d6f7649d3c7f2e055a77ef9432c245928675ef4c (patch) | |
tree | 443bac02c87b166e480e88bdd2a7d0e09c9aeb52 /mysql-test/r/join_outer.result | |
parent | 184df985829eef49a7af251ec8cb96117c4194dd (diff) | |
download | mariadb-git-d6f7649d3c7f2e055a77ef9432c245928675ef4c.tar.gz |
mdev-4942: Add another testcase after merging with other fixes.
Diffstat (limited to 'mysql-test/r/join_outer.result')
-rw-r--r-- | mysql-test/r/join_outer.result | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/join_outer.result b/mysql-test/r/join_outer.result index cc0d7572a92..b193bf057eb 100644 --- a/mysql-test/r/join_outer.result +++ b/mysql-test/r/join_outer.result @@ -2158,6 +2158,18 @@ SELECT * FROM t1 LEFT JOIN t2 ON i1 = j2 WHERE d1 IS NULL AND 1 OR i1 = i2; i1 d1 i2 j2 2 0000-00-00 NULL NULL DROP TABLE t1,t2; +# Another testcase +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 LEFT JOIN v2 ON i1 = i2 WHERE a < b; +i1 i2 a b +SELECT * FROM t1 LEFT JOIN t2 ON i1 = i2 WHERE a < b; +i1 i2 a b +drop view v2; +drop table t1,t2; # # Bug mdev-4942: LEFT JOIN with conjunctive # <non-nullable datetime field> IS NULL in WHERE |