diff options
author | unknown <jimw@mysql.com> | 2005-12-01 12:07:25 -0800 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-12-01 12:07:25 -0800 |
commit | f604204f527e9d31e1f119918fe7b40aa45472b2 (patch) | |
tree | 535395bee6b9e9d6d141bdf4c20de8f500014956 /mysql-test/r/func_equal.result | |
parent | 5df3be70c8985edf9d6a2ab98e0419ce7e489b3c (diff) | |
parent | 73e4a7788679effd0908e1d27ad15c52f5cbaca3 (diff) | |
download | mariadb-git-f604204f527e9d31e1f119918fe7b40aa45472b2.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-12612
into mysql.com:/home/jimw/my/mysql-5.0-clean
mysql-test/r/func_equal.result:
Auto merged
mysql-test/t/func_equal.test:
Auto merged
sql/item_cmpfunc.cc:
SCCS merged
Diffstat (limited to 'mysql-test/r/func_equal.result')
-rw-r--r-- | mysql-test/r/func_equal.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/func_equal.result b/mysql-test/r/func_equal.result index fe5e5b1b371..4750af6e8d8 100644 --- a/mysql-test/r/func_equal.result +++ b/mysql-test/r/func_equal.result @@ -33,3 +33,12 @@ id value select * from t1 where id <=> value or value<=>id; id value drop table t1,t2; +create table t1 (a bigint unsigned); +insert into t1 values (4828532208463511553); +select * from t1 where a = '4828532208463511553'; +a +4828532208463511553 +select * from t1 where a in ('4828532208463511553'); +a +4828532208463511553 +drop table t1; |