Class SupportsFilterPushDown.Result
java.lang.Object
org.apache.flink.table.connector.source.abilities.SupportsFilterPushDown.Result
- Enclosing interface:
- SupportsFilterPushDown
Result of a filter push down. It represents the communication of the source to the planner
during optimization.
-
Method Summary
Modifier and TypeMethodDescriptionof(List<ResolvedExpression> acceptedFilters, List<ResolvedExpression> remainingFilters) Constructs a filter push-down result.
-
Method Details
-
of
public static SupportsFilterPushDown.Result of(List<ResolvedExpression> acceptedFilters, List<ResolvedExpression> remainingFilters) Constructs a filter push-down result.See the documentation of
SupportsFilterPushDownfor more information.- Parameters:
acceptedFilters- filters that are consumed by the source but may be applied on a best effort basisremainingFilters- filters that a subsequent filter operation still needs to perform during runtime
-
getAcceptedFilters
-
getRemainingFilters
-