diff options
author | unknown <sergefp@mysql.com> | 2005-09-24 02:39:52 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2005-09-24 02:39:52 +0400 |
commit | 5f01a330bbcac84f33133fb13fa3e952ab1e544d (patch) | |
tree | 4d3059fac0bd44cfc43758df9764ecb824bf9ace /mysql-test/t/func_in.test | |
parent | 9448683059d21bf820660e31b9515a49cba44023 (diff) | |
parent | 5559c48e182e40cfd052a29e875514761994333d (diff) | |
download | mariadb-git-5f01a330bbcac84f33133fb13fa3e952ab1e544d.tar.gz |
Manually merged
myisam/mi_check.c:
Auto merged
myisam/myisamchk.c:
Auto merged
mysql-test/r/myisam.result:
Auto merged
mysql-test/t/func_in.test:
Auto merged
sql/ha_myisam.cc:
Auto merged
sql/mysqld.cc:
Auto merged
sql/sql_select.cc:
Manually merged.
Diffstat (limited to 'mysql-test/t/func_in.test')
-rw-r--r-- | mysql-test/t/func_in.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/func_in.test b/mysql-test/t/func_in.test index 7bf737402ef..dd4edd8ca48 100644 --- a/mysql-test/t/func_in.test +++ b/mysql-test/t/func_in.test @@ -102,6 +102,13 @@ insert into t1 values ('aa'), ('bb'); select * from t1 where a in (NULL, 'aa'); drop table t1; +# BUG#13419 +create table t1 (id int, key(id)); +insert into t1 values (1),(2),(3); +select count(*) from t1 where id not in (1); +select count(*) from t1 where id not in (1,2); +drop table t1; + # End of 4.1 tests # |