1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for bug #10632 (CEILING returns wrong result)

This commit is contained in:
hf@deer.(none)
2005-06-15 19:53:40 +05:00
parent dd0936cadc
commit f1fb785b12
3 changed files with 38 additions and 4 deletions

View File

@ -84,3 +84,10 @@ drop table t1;
# Bug #10083 (round doesn't increase decimals)
#
select round(150, 2);
#
# Bug @10632 (Ceiling function returns wrong answer)
#
select ceil(0.09);
select ceil(0.000000000000000009);