summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_in.test
diff options
context:
space:
mode:
authorunknown <sergefp@mysql.com>2005-09-24 02:39:52 +0400
committerunknown <sergefp@mysql.com>2005-09-24 02:39:52 +0400
commit5f01a330bbcac84f33133fb13fa3e952ab1e544d (patch)
tree4d3059fac0bd44cfc43758df9764ecb824bf9ace /mysql-test/t/func_in.test
parent9448683059d21bf820660e31b9515a49cba44023 (diff)
parent5559c48e182e40cfd052a29e875514761994333d (diff)
downloadmariadb-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.test7
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
#