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

@ -146,3 +146,9 @@ drop table t1;
select round(150, 2);
round(150, 2)
150.00
select ceil(0.09);
ceil(0.09)
1
select ceil(0.000000000000000009);
ceil(0.000000000000000009)
1