Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
5.4
-
None
Description
The values for Dates are large enough that squaring them overflows a "long" field. This should be converted to a double.
StatsValuesFactory.java, line 755 DateStatsValues#updateTypeSpecificStats Add a cast to double
sumOfSquares += ( (double)value * value * count);