diff options
author | bar@mysql.com <> | 2006-03-30 13:04:58 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2006-03-30 13:04:58 +0500 |
commit | c5cd39b29a47bbb67210d28ce3edad3c5f18ee91 (patch) | |
tree | 2d52536785981cc9731b62644ddf38ce52d505d6 /mysql-test | |
parent | 2618be804dc33051663434152de0ed002ab45778 (diff) | |
parent | 07e21be0fe707e4b147a5fdd796db5ce2f5d49c0 (diff) | |
download | mariadb-git-c5cd39b29a47bbb67210d28ce3edad3c5f18ee91.tar.gz |
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/usr/home/bar/mysql-5.0
Diffstat (limited to 'mysql-test')
-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 ae9e6748e65..d60efa083e0 100644 --- a/mysql-test/r/cast.result +++ b/mysql-test/r/cast.result @@ -344,6 +344,9 @@ SELECT f1 AS double_val, CAST(f1 AS SIGNED INT) AS cast_val FROM t1; double_val cast_val -1e+30 -9223372036854775808 1e+30 9223372036854775807 +Warnings: +Warning 1292 Truncated incorrect INTEGER value: '-1e+30' +Warning 1292 Truncated incorrect INTEGER value: '1e+30' DROP TABLE t1; select cast('1.2' as decimal(3,2)); cast('1.2' as decimal(3,2)) |