Class PruneApplyCorrelation
java.lang.Object
io.trino.sql.planner.iterative.rule.PruneApplyCorrelation
This rule updates ApplyNode's correlation list.
A symbol can be removed from the correlation list if it is not referenced by the subquery node.
Note: This rule does not restrict ApplyNode's children outputs. It requires additional information
about context (symbols required by the outer plan) and is done in PruneApplyColumns rule.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.trino.sql.planner.iterative.Rule
Rule.Context, Rule.Result -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply(ApplyNode applyNode, Captures captures, Rule.Context context) Returns a pattern to which plan nodes this rule applies.
-
Constructor Details
-
PruneApplyCorrelation
public PruneApplyCorrelation()
-
-
Method Details