Package org.apache.iceberg.parquet
Class ParquetMetricsRowGroupFilter
java.lang.Object
org.apache.iceberg.parquet.ParquetMetricsRowGroupFilter
-
Constructor Summary
ConstructorDescriptionParquetMetricsRowGroupFilter
(Schema schema, Expression unbound) ParquetMetricsRowGroupFilter
(Schema schema, Expression unbound, boolean caseSensitive) -
Method Summary
Modifier and TypeMethodDescriptionboolean
shouldRead
(org.apache.parquet.schema.MessageType fileSchema, org.apache.parquet.hadoop.metadata.BlockMetaData rowGroup) Test whether the file may contain records that match the expression.
-
Constructor Details
-
ParquetMetricsRowGroupFilter
-
ParquetMetricsRowGroupFilter
-
-
Method Details
-
shouldRead
public boolean shouldRead(org.apache.parquet.schema.MessageType fileSchema, org.apache.parquet.hadoop.metadata.BlockMetaData rowGroup) Test whether the file may contain records that match the expression.- Parameters:
fileSchema
- schema for the Parquet filerowGroup
- metadata for a row group- Returns:
- false if the file cannot contain rows that match the expression, true otherwise.
-