You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Laszlo Bodor (JIRA)" <ji...@apache.org> on 2018/04/09 14:31:00 UTC

[jira] [Created] (HIVE-19131) DecimalColumnStatsMergerTest comparison review

Laszlo Bodor created HIVE-19131:
-----------------------------------

             Summary: DecimalColumnStatsMergerTest comparison review
                 Key: HIVE-19131
                 URL: https://issues.apache.org/jira/browse/HIVE-19131
             Project: Hive
          Issue Type: Bug
            Reporter: Laszlo Bodor


DecimalColumnStatsMergerTest has a strange comparison logic, which needs to be reviewed.

Regarding low and high values, it uses compareTo with the same direction, which seems to be incorrect.

{code}

Decimal lowValue = aggregateData.getLowValue() != null && (aggregateData.getLowValue().compareTo(newData.getLowValue()) > 0) ? aggregateData .getLowValue() : newData.getLowValue(); aggregateData.setLowValue(lowValue); Decimal highValue = aggregateData.getHighValue() != null && (aggregateData.getHighValue().compareTo(newData.getHighValue()) > 0) ? aggregateData .getHighValue() : newData.getHighValue();

{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)