diff options
author | unknown <jimw@mysql.com> | 2005-10-12 13:27:49 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-10-12 13:27:49 -0700 |
commit | 101d9189bd585887b9a49f099f26d8dc751f576a (patch) | |
tree | 4c6a5ef7eb7fcaf505f80279ef9adef99af675e1 /mysql-test/t/cast.test | |
parent | 9a3bce50ae0e9e334f952bcb67c8c5575c39a0bd (diff) | |
parent | 13fa84a7e2f25f69fcaf8ad5893ac6fe152d6ff8 (diff) | |
download | mariadb-git-101d9189bd585887b9a49f099f26d8dc751f576a.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-13344
into mysql.com:/home/jimw/my/mysql-4.1-clean
mysql-test/r/cast.result:
Auto merged
mysql-test/t/cast.test:
Auto merged
sql/item.h:
Auto merged
Diffstat (limited to 'mysql-test/t/cast.test')
-rw-r--r-- | mysql-test/t/cast.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/cast.test b/mysql-test/t/cast.test index bb01e8cea83..ea0a0e4b352 100644 --- a/mysql-test/t/cast.test +++ b/mysql-test/t/cast.test @@ -147,4 +147,9 @@ select cast(concat('184467440','73709551615') as signed); select cast(repeat('1',20) as unsigned); select cast(repeat('1',20) as signed); +# +# Bug #13344: cast of large decimal to signed int not handled correctly +# +select cast(1.0e+300 as signed int); + # End of 4.1 tests |