Package io.trino.orc
Interface OrcPredicate
-
- All Known Implementing Classes:
TupleDomainOrcPredicate
public interface OrcPredicate
-
-
Field Summary
Fields Modifier and Type Field Description static OrcPredicateTRUE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(long numberOfRows, ColumnMetadata<ColumnStatistics> allColumnStatistics)Should the ORC reader process a file section with the specified statistics.
-
-
-
Field Detail
-
TRUE
static final OrcPredicate TRUE
-
-
Method Detail
-
matches
boolean matches(long numberOfRows, ColumnMetadata<ColumnStatistics> allColumnStatistics)Should the ORC reader process a file section with the specified statistics.- Parameters:
numberOfRows- the number of rows in the segment; this can be used withColumnStatisticsto determine if a column is only nullallColumnStatistics- column statistics
-
-