Package io.trino.sql.planner.plan
Class ApplyNode
- java.lang.Object
-
- io.trino.sql.planner.plan.PlanNode
-
- io.trino.sql.planner.plan.ApplyNode
-
@Immutable public class ApplyNode extends PlanNode
-
-
Constructor Summary
Constructors Constructor Description ApplyNode(PlanNodeId id, PlanNode input, PlanNode subquery, Assignments subqueryAssignments, List<Symbol> correlation, Node originSubquery)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(PlanVisitor<R,C> visitor, C context)List<Symbol>getCorrelation()PlanNodegetInput()NodegetOriginSubquery()List<Symbol>getOutputSymbols()List<PlanNode>getSources()PlanNodegetSubquery()AssignmentsgetSubqueryAssignments()PlanNodereplaceChildren(List<PlanNode> newChildren)
-
-
-
Constructor Detail
-
ApplyNode
public ApplyNode(PlanNodeId id, PlanNode input, PlanNode subquery, Assignments subqueryAssignments, List<Symbol> correlation, Node originSubquery)
-
-
Method Detail
-
getInput
public PlanNode getInput()
-
getSubquery
public PlanNode getSubquery()
-
getSubqueryAssignments
public Assignments getSubqueryAssignments()
-
getOriginSubquery
public Node getOriginSubquery()
-
getSources
public List<PlanNode> getSources()
- Specified by:
getSourcesin classPlanNode
-
getOutputSymbols
public List<Symbol> getOutputSymbols()
- Specified by:
getOutputSymbolsin classPlanNode
-
accept
public <R,C> R accept(PlanVisitor<R,C> visitor, C context)
-
replaceChildren
public PlanNode replaceChildren(List<PlanNode> newChildren)
- Specified by:
replaceChildrenin classPlanNode
-
-