org.apache.hadoop.hive.ql.io.orc
Interface DecimalColumnStatistics

All Superinterfaces:
ColumnStatistics

public interface DecimalColumnStatistics
extends ColumnStatistics

Statistics for decimal columns.


Method Summary
 HiveDecimal getMaximum()
          Get the maximum value for the column.
 HiveDecimal getMinimum()
          Get the minimum value for the column.
 HiveDecimal getSum()
          Get the sum of the values of the column.
 
Methods inherited from interface org.apache.hadoop.hive.ql.io.orc.ColumnStatistics
getNumberOfValues
 

Method Detail

getMinimum

HiveDecimal getMinimum()
Get the minimum value for the column.

Returns:
the minimum value

getMaximum

HiveDecimal getMaximum()
Get the maximum value for the column.

Returns:
the maximum value

getSum

HiveDecimal getSum()
Get the sum of the values of the column.

Returns:
the sum


Copyright © 2014 The Apache Software Foundation. All rights reserved.