Package org.apache.orc
Interface DecimalColumnStatistics
- All Superinterfaces:
ColumnStatistics
Statistics for decimal columns.
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.hadoop.hive.common.type.HiveDecimal
Get the maximum value for the column.org.apache.hadoop.hive.common.type.HiveDecimal
Get the minimum value for the column.org.apache.hadoop.hive.common.type.HiveDecimal
getSum()
Get the sum of the values of the column.Methods inherited from interface org.apache.orc.ColumnStatistics
getBytesOnDisk, getNumberOfValues, hasNull
-
Method Details
-
getMinimum
org.apache.hadoop.hive.common.type.HiveDecimal getMinimum()Get the minimum value for the column.- Returns:
- the minimum value
-
getMaximum
org.apache.hadoop.hive.common.type.HiveDecimal getMaximum()Get the maximum value for the column.- Returns:
- the maximum value
-
getSum
org.apache.hadoop.hive.common.type.HiveDecimal getSum()Get the sum of the values of the column.- Returns:
- the sum
-