Uses of Interface
org.apache.parquet.filter2.compat.FilterCompat.Filter
-
Packages that use FilterCompat.Filter Package Description org.apache.parquet.filter2.compat org.apache.parquet.internal.filter2.columnindex org.apache.parquet.io -
-
Uses of FilterCompat.Filter in org.apache.parquet.filter2.compat
Classes in org.apache.parquet.filter2.compat that implement FilterCompat.Filter Modifier and Type Class Description static classFilterCompat.FilterPredicateCompatstatic classFilterCompat.NoOpFilterstatic classFilterCompat.UnboundRecordFilterCompatFields in org.apache.parquet.filter2.compat declared as FilterCompat.Filter Modifier and Type Field Description static FilterCompat.FilterFilterCompat. NOOPMethods in org.apache.parquet.filter2.compat that return FilterCompat.Filter Modifier and Type Method Description static FilterCompat.FilterFilterCompat. get(UnboundRecordFilter unboundRecordFilter)Given an UnboundRecordFilter, return a Filter that wraps it.static FilterCompat.FilterFilterCompat. get(FilterPredicate filterPredicate)Given a FilterPredicate, return a Filter that wraps it.static FilterCompat.FilterFilterCompat. get(FilterPredicate filterPredicate, UnboundRecordFilter unboundRecordFilter)Given either a FilterPredicate or the class of an UnboundRecordFilter, or neither (but not both) return a Filter that wraps whichever was provided.Methods in org.apache.parquet.filter2.compat with parameters of type FilterCompat.Filter Modifier and Type Method Description static booleanFilterCompat. isFilteringRequired(FilterCompat.Filter filter)Returns whether filtering is required based on the specified filter. -
Uses of FilterCompat.Filter in org.apache.parquet.internal.filter2.columnindex
Methods in org.apache.parquet.internal.filter2.columnindex with parameters of type FilterCompat.Filter Modifier and Type Method Description static RowRangesColumnIndexFilter. calculateRowRanges(FilterCompat.Filter filter, ColumnIndexStore columnIndexStore, Set<org.apache.parquet.hadoop.metadata.ColumnPath> paths, long rowCount)Calculates the row ranges containing the indexes of the rows might match the specified filter. -
Uses of FilterCompat.Filter in org.apache.parquet.io
Methods in org.apache.parquet.io with parameters of type FilterCompat.Filter Modifier and Type Method Description <T> RecordReader<T>MessageColumnIO. getRecordReader(PageReadStore columns, RecordMaterializer<T> recordMaterializer, FilterCompat.Filter filter)
-