diff options
author | unknown <serg@serg.mylan> | 2005-03-14 11:04:42 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-03-14 11:04:42 +0100 |
commit | 1c234737515106342180daa9671de15dedd48fcc (patch) | |
tree | a33cb38030f4e9f10952cc9ce0e35488b230d788 /mysql-test/r/join_outer.result | |
parent | 174a177ccb176e03d02bc57c05a7cc4d76a0a4c3 (diff) | |
download | mariadb-git-1c234737515106342180daa9671de15dedd48fcc.tar.gz |
anotehr fix for Item_func_isnotnull::not_null_tables()
mysql-test/r/join_outer.result:
anotehr test for Item_func_isnotnull::not_null_tables()
mysql-test/t/join_outer.test:
anotehr test for Item_func_isnotnull::not_null_tables()
Diffstat (limited to 'mysql-test/r/join_outer.result')
-rw-r--r-- | mysql-test/r/join_outer.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/join_outer.result b/mysql-test/r/join_outer.result index c278e50afdc..15131b90a7a 100644 --- a/mysql-test/r/join_outer.result +++ b/mysql-test/r/join_outer.result @@ -653,6 +653,10 @@ i i i select * from t1 natural left join t2 where (t2.i is not null)=0; i i 1 NULL +select * from t1 natural left join t2 where (t2.i is not null) is not null; +i i +1 NULL +2 2 drop table t1,t2,t3; create table t1 (f1 integer,f2 integer,f3 integer); create table t2 (f2 integer,f4 integer); |