summaryrefslogtreecommitdiff
path: root/mysql-test/r/join_outer.result
diff options
context:
space:
mode:
authorserg@serg.mylan <>2005-03-14 11:04:42 +0100
committerserg@serg.mylan <>2005-03-14 11:04:42 +0100
commitada959edf83e1560f1770bd6a831fd670050e5cf (patch)
treea33cb38030f4e9f10952cc9ce0e35488b230d788 /mysql-test/r/join_outer.result
parenta6b3b8fa98305862172fb1b267f11f06004a929f (diff)
downloadmariadb-git-ada959edf83e1560f1770bd6a831fd670050e5cf.tar.gz
anotehr fix 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);