Does Apache Parquet support Custom Filter Predicate on Repeated values?

162 Views Asked by At

Does Apache Parquet support Custom Filter Predicate on Repeated values? By applying a filter on a repeated value, I get:

FilterPredicates do not currently support repeated columns. Column part.x is repeated

The filter I set on the x double repeated value is:

FilterApi.gtEq(FilterApi.doubleColumn("part.x"), 4d)

Is there any way to form a custom filter to apply on the repeated value?

0

There are 0 best solutions below