Package io.trino.sql.planner.plan
Class TableExecuteNode
- java.lang.Object
-
- io.trino.sql.planner.plan.PlanNode
-
- io.trino.sql.planner.plan.TableExecuteNode
-
@Immutable public class TableExecuteNode extends PlanNode
-
-
Constructor Summary
Constructors Constructor Description TableExecuteNode(PlanNodeId id, PlanNode source, TableWriterNode.TableExecuteTarget target, Symbol rowCountSymbol, Symbol fragmentSymbol, List<Symbol> columns, List<String> columnNames, Optional<PartitioningScheme> partitioningScheme, Optional<PartitioningScheme> preferredPartitioningScheme)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(PlanVisitor<R,C> visitor, C context)List<String>getColumnNames()List<Symbol>getColumns()SymbolgetFragmentSymbol()List<Symbol>getOutputSymbols()Optional<PartitioningScheme>getPartitioningScheme()Optional<PartitioningScheme>getPreferredPartitioningScheme()SymbolgetRowCountSymbol()PlanNodegetSource()List<PlanNode>getSources()TableWriterNode.TableExecuteTargetgetTarget()PlanNodereplaceChildren(List<PlanNode> newChildren)
-
-
-
Constructor Detail
-
TableExecuteNode
public TableExecuteNode(PlanNodeId id, PlanNode source, TableWriterNode.TableExecuteTarget target, Symbol rowCountSymbol, Symbol fragmentSymbol, List<Symbol> columns, List<String> columnNames, Optional<PartitioningScheme> partitioningScheme, Optional<PartitioningScheme> preferredPartitioningScheme)
-
-
Method Detail
-
getSource
public PlanNode getSource()
-
getTarget
public TableWriterNode.TableExecuteTarget getTarget()
-
getRowCountSymbol
public Symbol getRowCountSymbol()
-
getFragmentSymbol
public Symbol getFragmentSymbol()
-
getPartitioningScheme
public Optional<PartitioningScheme> getPartitioningScheme()
-
getPreferredPartitioningScheme
public Optional<PartitioningScheme> getPreferredPartitioningScheme()
-
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
-
-