diff options
author | unknown <bar@mysql.com> | 2005-10-13 21:28:44 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-10-13 21:28:44 +0500 |
commit | 6bf7a0f3c975cbce669545566a768e6d0fe88b1d (patch) | |
tree | f31fc507ab0b909aa996135d030561785adf4fe1 /mysql-test/r/cast.result | |
parent | 842fd992f6d6b2a9575e8a7dd16f374fb6842338 (diff) | |
download | mariadb-git-6bf7a0f3c975cbce669545566a768e6d0fe88b1d.tar.gz |
select.result, mysqldump-max.result:
after merge fix.
range.result:
fixing result accordingly
,
cast.result:
after merge fix
range.test:
Avoid SELECT'ing of BINARY column not to output 0x00 bytes.
mysql-test/t/range.test:
Avoid SELECT'ing of BINARY column not to output 0x00 bytes.
mysql-test/r/cast.result:
after merge fix
mysql-test/r/mysqldump-max.result:
after merge fix.
mysql-test/r/range.result:
fixing result accordingly
,
mysql-test/r/select.result:
after merge fix.
Diffstat (limited to 'mysql-test/r/cast.result')
-rw-r--r-- | mysql-test/r/cast.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/cast.result b/mysql-test/r/cast.result index 6246d574a82..817be3a2e7c 100644 --- a/mysql-test/r/cast.result +++ b/mysql-test/r/cast.result @@ -334,6 +334,9 @@ 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 select cast('1.2' as decimal(3,2)); cast('1.2' as decimal(3,2)) 1.20 @@ -367,6 +370,3 @@ DROP TABLE t1; select cast(NULL as decimal(6)) as t1; t1 NULL -select cast(1.0e+300 as signed int); -cast(1.0e+300 as signed int) -9223372036854775807 |