diff options
author | unknown <evgen@moonbone.local> | 2006-06-20 01:56:33 +0400 |
---|---|---|
committer | unknown <evgen@moonbone.local> | 2006-06-20 01:56:33 +0400 |
commit | 495c6b13d183d18dd6f0650d7ae9097a33607719 (patch) | |
tree | e579b34c452e1bd180ffa728df40622580e5363c /mysql-test/r | |
parent | 5375bcad698da2c1ebbe33aff5d86ebccc896f4b (diff) | |
parent | 028fa1e454459e0732b00fc4adc1c0fb7fe6632f (diff) | |
download | mariadb-git-495c6b13d183d18dd6f0650d7ae9097a33607719.tar.gz |
Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-4.1
into moonbone.local:/work/tmp_merge-4.1-opt-mysql
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/func_in.result | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/mysql-test/r/func_in.result b/mysql-test/r/func_in.result index 0632dddb87e..3cf2afc83d1 100644 --- a/mysql-test/r/func_in.result +++ b/mysql-test/r/func_in.result @@ -202,24 +202,3 @@ select count(*) from t1 where id not in (1,2); count(*) 1 drop table t1; -create table t1 (f1 char(1), f2 int); -insert into t1 values (1,0),('a',1),('z',2); -select f1 from t1 where f1 in (1,'z'); -f1 -1 -z -select f2 from t1 where f2 in (1,'z'); -f2 -0 -1 -select f1 from t1 where 'z' in (1,f1); -f1 -z -select * from t1 where 'z' in (f2,f1); -f1 f2 -z 2 -select * from t1 where 1 in (f2,f1); -f1 f2 -1 0 -a 1 -drop table t1; |