summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-05-17 00:09:43 +0500
committerunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-05-17 00:09:43 +0500
commit5e00d4b7f67a48d64e66f7704a48f71b8e04d158 (patch)
tree612dc0db782857fa988770f12109ef15e6f573c9 /mysql-test/t
parent963fae4b80d6ad96d495a9f187a1897ef0f88a07 (diff)
parent1e33cfb36a84b477a468dbcfc1ccc3035a9efb81 (diff)
downloadmariadb-git-5e00d4b7f67a48d64e66f7704a48f71b8e04d158.tar.gz
Merge bk@192.168.21.1:mysql-5.0-opt
into mysql.com:/home/hf/work/8663/my50-8663
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/bigint.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/bigint.test b/mysql-test/t/bigint.test
index 6c1229db83f..9a5fb11229d 100644
--- a/mysql-test/t/bigint.test
+++ b/mysql-test/t/bigint.test
@@ -288,3 +288,9 @@ insert into t1 values (10000002383263201056);
select c1 mod 50 as result from t1;
drop table t1;
+#
+# Bug #8663 cant use bgint unsigned as input to cast
+#
+
+select cast(19999999999999999999 as signed);
+select cast(-19999999999999999999 as signed);