Package io.trino.sql.planner.plan
Class IndexSourceNode
- java.lang.Object
-
- io.trino.sql.planner.plan.PlanNode
-
- io.trino.sql.planner.plan.IndexSourceNode
-
public class IndexSourceNode extends PlanNode
-
-
Constructor Summary
Constructors Constructor Description IndexSourceNode(PlanNodeId id, IndexHandle indexHandle, TableHandle tableHandle, Set<Symbol> lookupSymbols, List<Symbol> outputSymbols, Map<Symbol,ColumnHandle> assignments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(PlanVisitor<R,C> visitor, C context)Map<Symbol,ColumnHandle>getAssignments()IndexHandlegetIndexHandle()Set<Symbol>getLookupSymbols()List<Symbol>getOutputSymbols()List<PlanNode>getSources()TableHandlegetTableHandle()PlanNodereplaceChildren(List<PlanNode> newChildren)
-
-
-
Constructor Detail
-
IndexSourceNode
public IndexSourceNode(PlanNodeId id, IndexHandle indexHandle, TableHandle tableHandle, Set<Symbol> lookupSymbols, List<Symbol> outputSymbols, Map<Symbol,ColumnHandle> assignments)
-
-
Method Detail
-
getIndexHandle
public IndexHandle getIndexHandle()
-
getTableHandle
public TableHandle getTableHandle()
-
getOutputSymbols
public List<Symbol> getOutputSymbols()
- Specified by:
getOutputSymbolsin classPlanNode
-
getAssignments
public Map<Symbol,ColumnHandle> getAssignments()
-
getSources
public List<PlanNode> getSources()
- Specified by:
getSourcesin classPlanNode
-
accept
public <R,C> R accept(PlanVisitor<R,C> visitor, C context)
-
replaceChildren
public PlanNode replaceChildren(List<PlanNode> newChildren)
- Specified by:
replaceChildrenin classPlanNode
-
-