Package io.trino.sql.planner.plan
Class IndexJoinNode
- java.lang.Object
-
- io.trino.sql.planner.plan.PlanNode
-
- io.trino.sql.planner.plan.IndexJoinNode
-
@Immutable public class IndexJoinNode extends PlanNode
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIndexJoinNode.EquiJoinClausestatic classIndexJoinNode.Type
-
Constructor Summary
Constructors Constructor Description IndexJoinNode(PlanNodeId id, IndexJoinNode.Type type, PlanNode probeSource, PlanNode indexSource, List<IndexJoinNode.EquiJoinClause> criteria, Optional<Symbol> probeHashSymbol, Optional<Symbol> indexHashSymbol)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(PlanVisitor<R,C> visitor, C context)List<IndexJoinNode.EquiJoinClause>getCriteria()Optional<Symbol>getIndexHashSymbol()PlanNodegetIndexSource()List<Symbol>getOutputSymbols()Optional<Symbol>getProbeHashSymbol()PlanNodegetProbeSource()List<PlanNode>getSources()IndexJoinNode.TypegetType()PlanNodereplaceChildren(List<PlanNode> newChildren)
-
-
-
Constructor Detail
-
IndexJoinNode
public IndexJoinNode(PlanNodeId id, IndexJoinNode.Type type, PlanNode probeSource, PlanNode indexSource, List<IndexJoinNode.EquiJoinClause> criteria, Optional<Symbol> probeHashSymbol, Optional<Symbol> indexHashSymbol)
-
-
Method Detail
-
getType
public IndexJoinNode.Type getType()
-
getProbeSource
public PlanNode getProbeSource()
-
getIndexSource
public PlanNode getIndexSource()
-
getCriteria
public List<IndexJoinNode.EquiJoinClause> getCriteria()
-
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
-
-