Package io.trino.sql.planner.plan
Class ExplainAnalyzeNode
- java.lang.Object
-
- io.trino.sql.planner.plan.PlanNode
-
- io.trino.sql.planner.plan.ExplainAnalyzeNode
-
@Immutable public class ExplainAnalyzeNode extends PlanNode
-
-
Constructor Summary
Constructors Constructor Description ExplainAnalyzeNode(PlanNodeId id, PlanNode source, Symbol outputSymbol, List<Symbol> actualOutputs, boolean verbose)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(PlanVisitor<R,C> visitor, C context)List<Symbol>getActualOutputs()SymbolgetOutputSymbol()List<Symbol>getOutputSymbols()PlanNodegetSource()List<PlanNode>getSources()booleanisVerbose()PlanNodereplaceChildren(List<PlanNode> newChildren)
-
-
-
Constructor Detail
-
ExplainAnalyzeNode
public ExplainAnalyzeNode(PlanNodeId id, PlanNode source, Symbol outputSymbol, List<Symbol> actualOutputs, boolean verbose)
-
-
Method Detail
-
getOutputSymbol
public Symbol getOutputSymbol()
-
getSource
public PlanNode getSource()
-
isVerbose
public boolean isVerbose()
-
getOutputSymbols
public List<Symbol> getOutputSymbols()
- Specified by:
getOutputSymbolsin classPlanNode
-
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
-
-