summaryrefslogtreecommitdiff
path: root/mysql-test/r/join_outer.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2005-03-14 11:04:42 +0100
committerunknown <serg@serg.mylan>2005-03-14 11:04:42 +0100
commit1c234737515106342180daa9671de15dedd48fcc (patch)
treea33cb38030f4e9f10952cc9ce0e35488b230d788 /mysql-test/r/join_outer.result
parent174a177ccb176e03d02bc57c05a7cc4d76a0a4c3 (diff)
downloadmariadb-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.result4
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);