diff options
author | unknown <ramil@mysql.com> | 2005-02-04 15:35:08 +0400 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-02-04 15:35:08 +0400 |
commit | 4c69539827f69a693236eca0a2f512b1618e80a1 (patch) | |
tree | 556d6631b5c20254b96c0f3e95120624ec323acf /mysql-test | |
parent | e244a3a9b4a9d9fd9dad63338ead667cf4b9a959 (diff) | |
download | mariadb-git-4c69539827f69a693236eca0a2f512b1618e80a1.tar.gz |
type_float.result.es updated.
mysql-test/r/type_float.result.es:
Updated.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/type_float.result.es | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/type_float.result.es b/mysql-test/r/type_float.result.es index b93539b6bea..5fcf9213f83 100644 --- a/mysql-test/r/type_float.result.es +++ b/mysql-test/r/type_float.result.es @@ -143,6 +143,15 @@ drop table t1; create table t1 (f float(54)); ERROR 42000: Incorrect column specifier for column 'f' drop table if exists t1; +create table t1 (d1 double, d2 double unsigned); +insert into t1 set d1 = -1.0; +update t1 set d2 = d1; +Warnings: +Warning 1264 Data truncated; out of range for column 'd2' at row 1 +select * from t1; +d1 d2 +-1 0 +drop table t1; create table t1 (f float(4,3)); insert into t1 values (-11.0),(-11),("-11"),(11.0),(11),("11"); Warnings: |