mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
correct not_null_tables() for XOR and AND
correct top_level_item for XOR mysql-test/r/join_outer.result: one more test mysql-test/t/join_outer.test: one more test
This commit is contained in:
@ -857,4 +857,10 @@ a b a b
|
||||
1 1 1 2
|
||||
2 1 2 2
|
||||
3 1 NULL NULL
|
||||
SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.a WHERE not(0+(t1.a=30 and t2.b=1));
|
||||
a b a b
|
||||
1 1 1 2
|
||||
2 1 2 2
|
||||
3 1 NULL NULL
|
||||
4 2 NULL NULL
|
||||
DROP TABLE t1,t2;
|
||||
|
Reference in New Issue
Block a user