diff options
author | jimw@mysql.com <> | 2005-09-22 15:59:13 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-09-22 15:59:13 -0700 |
commit | 3bfe3579d4d58a33062f3c7053206d331df7659d (patch) | |
tree | d7153c4337a3eb84f2a213da38023db6748d08ec /mysql-test/r/cast.result | |
parent | 5cf4eb0e26543c6e18c440f2a1a9cf3ce3672781 (diff) | |
download | mariadb-git-3bfe3579d4d58a33062f3c7053206d331df7659d.tar.gz |
Fix CAST(1.0e+300 TO SIGNED). (Bug #13344)
Diffstat (limited to 'mysql-test/r/cast.result')
-rw-r--r-- | mysql-test/r/cast.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/cast.result b/mysql-test/r/cast.result index 7cd0934f7a3..d5d679a0ae8 100644 --- a/mysql-test/r/cast.result +++ b/mysql-test/r/cast.result @@ -252,3 +252,6 @@ cast(repeat('1',20) as signed) -7335632962598440505 Warnings: Warning 1105 Cast to signed converted positive out-of-range integer to it's negative complement +select cast(1.0e+300 as signed int); +cast(1.0e+300 as signed int) +9223372036854775807 |