Test case added for bug #9527 (negative zero is a nonsence)

This commit is contained in:
holyfoot@hf-ibm.(none) 2005-05-07 14:52:03 +05:00
parent 44ad7495bb
commit 0dcb4707a0
2 changed files with 7 additions and 0 deletions

View file

@ -860,3 +860,6 @@ Error 1292 Truncated incorrect DECIMAL value: ''
select 0.190287977636363637 + 0.040372670 * 0 - 0;
0.190287977636363637 + 0.040372670 * 0 - 0
0.190287977636363637
select -0.123 * 0;
-0.123 * 0
0.000

View file

@ -888,3 +888,7 @@ select 9999999999999999999999999999999999999999999999999999999999999999999999999
# Bug #10004
#
select 0.190287977636363637 + 0.040372670 * 0 - 0;
#
# Bug #9527
#
select -0.123 * 0;