diff options
author | unknown <kroki/tomash@moonlight.intranet> | 2006-11-16 14:15:56 +0300 |
---|---|---|
committer | unknown <kroki/tomash@moonlight.intranet> | 2006-11-16 14:15:56 +0300 |
commit | 467211be6aa96466b7787fbdfd7d6f38fca1f28d (patch) | |
tree | 887655dd59d97090c63cd7d4e3466b7b63a66918 /mysql-test/r | |
parent | c60d8fb1f20b60106afcd29d62f8a2d0e285cf74 (diff) | |
parent | f77509f1b38a970b5d39674d7cfd381d996b30ec (diff) | |
download | mariadb-git-467211be6aa96466b7787fbdfd7d6f38fca1f28d.tar.gz |
Merge moonlight.intranet:/home/tomash/src/mysql_ab/mysql-4.1-runtime
into moonlight.intranet:/home/tomash/src/mysql_ab/mysql-4.1-bug17047
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/func_in.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/func_in.result b/mysql-test/r/func_in.result index 3cf2afc83d1..f74c63f7260 100644 --- a/mysql-test/r/func_in.result +++ b/mysql-test/r/func_in.result @@ -202,3 +202,11 @@ select count(*) from t1 where id not in (1,2); count(*) 1 drop table t1; +DROP TABLE IF EXISTS t1; +CREATE TABLE t1 SELECT 1 IN (2, NULL); +SELECT should return NULL. +SELECT * FROM t1; +1 IN (2, NULL) +NULL +DROP TABLE t1; +End of 4.1 tests |