1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix multiplication of abs() by a negative value. (Bug #11402)

This commit is contained in:
jimw@mysql.com
2005-06-22 20:00:21 -07:00
parent 53761ce08f
commit 1fa7b95d98
3 changed files with 8 additions and 3 deletions

View File

@ -137,3 +137,6 @@ select * from t1;
round(1, 6)
1.000000
drop table t1;
select abs(-2) * -2;
abs(-2) * -2
-4