summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_equal.result
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-12-01 12:07:25 -0800
committerjimw@mysql.com <>2005-12-01 12:07:25 -0800
commitfb1200a0a335377b3913a051d6bcc93ebc430c78 (patch)
tree535395bee6b9e9d6d141bdf4c20de8f500014956 /mysql-test/r/func_equal.result
parente7fe779ddf32132c73a2c2f8e9a1131440c51660 (diff)
parenta6aa8fa6d0ce26cea0d0fb849ba16b9118b28e68 (diff)
downloadmariadb-git-fb1200a0a335377b3913a051d6bcc93ebc430c78.tar.gz
Merge mysql.com:/home/jimw/my/mysql-4.1-12612
into mysql.com:/home/jimw/my/mysql-5.0-clean
Diffstat (limited to 'mysql-test/r/func_equal.result')
-rw-r--r--mysql-test/r/func_equal.result9
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;