Package org.apache.orc
Interface TimestampColumnStatistics
- All Superinterfaces:
ColumnStatistics
Statistics for Timestamp columns.
-
Method Summary
Modifier and TypeMethodDescriptionGet the maximum value for the column.Get the maximum value for the column in UTC.Get the minimum value for the column.Get the minimum value for the column in UTC.Methods inherited from interface org.apache.orc.ColumnStatistics
getBytesOnDisk, getNumberOfValues, hasNull
-
Method Details
-
getMinimum
Timestamp getMinimum()Get the minimum value for the column.- Returns:
- minimum value
-
getMaximum
Timestamp getMaximum()Get the maximum value for the column.- Returns:
- maximum value
-
getMinimumUTC
Timestamp getMinimumUTC()Get the minimum value for the column in UTC.- Returns:
- minimum value in UTC
-
getMaximumUTC
Timestamp getMaximumUTC()Get the maximum value for the column in UTC.- Returns:
- maximum value in UTC
-