diff options
author | unknown <gluh@mysql.com/gluh.(none)> | 2006-08-08 16:03:42 +0500 |
---|---|---|
committer | unknown <gluh@mysql.com/gluh.(none)> | 2006-08-08 16:03:42 +0500 |
commit | 66f6b5ba12ddfcd3c683e5a6df86b1d16751b1bf (patch) | |
tree | 475ca7e04f6aa86e1aaadb5b9381c3f76cb6cf95 /mysql-test/r/view.result | |
parent | d406c600532766fbd80484d96a910c6836e13300 (diff) | |
download | mariadb-git-66f6b5ba12ddfcd3c683e5a6df86b1d16751b1bf.tar.gz |
Bug#16172 DECIMAL data type processed incorrectly
issue an 'overflow warning' if result value is bigger than max possible value
include/decimal.h:
Bug#16172 DECIMAL data type processed incorrectly
new function decimal_intg()
mysql-test/r/cast.result:
Bug#16172 DECIMAL data type processed incorrectly
result fix
mysql-test/r/type_newdecimal.result:
Bug#16172 DECIMAL data type processed incorrectly
test result
mysql-test/r/view.result:
Bug#16172 DECIMAL data type processed incorrectly
result fix
mysql-test/t/type_newdecimal.test:
Bug#16172 DECIMAL data type processed incorrectly
test case
sql/item_create.cc:
Bug#16172 DECIMAL data type processed incorrectly
do not increase decimal part on 2(according to manual)
sql/my_decimal.h:
Bug#16172 DECIMAL data type processed incorrectly
new function my_decimal_intg()
strings/decimal.c:
Bug#16172 DECIMAL data type processed incorrectly
new function decimal_intg()
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index 2de47f44556..4ef13a0f307 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -1787,7 +1787,7 @@ drop table t1; create view v1 as select cast(1 as decimal); select * from v1; cast(1 as decimal) -1.00 +1 drop view v1; create table t1(f1 int); create table t2(f2 int); |