Class RelWriterImpl
java.lang.Object
org.apache.calcite.rel.externalize.RelWriterImpl
- All Implemented Interfaces:
RelWriter
- Direct Known Subclasses:
RelDotWriter
,RelXmlWriter
Implementation of
RelWriter
.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final SqlExplainLevel
protected final boolean
protected final PrintWriter
protected final org.apache.calcite.avatica.util.Spacer
protected final boolean
-
Constructor Summary
ConstructorsConstructorDescriptionRelWriterImpl
(PrintWriter pw, SqlExplainLevel detailLevel, boolean withIdPrefix) RelWriterImpl
(PrintWriter pw, SqlExplainLevel detailLevel, boolean withIdPrefix, boolean expand) -
Method Summary
Modifier and TypeMethodDescriptionWrites the completed explanation.boolean
expand()
Returns whether the writer needs to expand node's detail information when printing plan.final void
Prints an explanation of a node, with a list of (term, value) pairs.protected void
Returns detail level at which plan should be generated.Adds an attribute to the explanation of the current node.simple()
Converts the collected terms and values to a string.
-
Field Details
-
pw
-
detailLevel
-
withIdPrefix
protected final boolean withIdPrefix -
expand
protected final boolean expand -
spacer
protected final org.apache.calcite.avatica.util.Spacer spacer
-
-
Constructor Details
-
RelWriterImpl
-
RelWriterImpl
-
RelWriterImpl
public RelWriterImpl(PrintWriter pw, SqlExplainLevel detailLevel, boolean withIdPrefix, boolean expand)
-
-
Method Details
-
explain_
-
explain
Description copied from interface:RelWriter
Prints an explanation of a node, with a list of (term, value) pairs.The term-value pairs are generally gathered by calling
RelNode.explain(RelWriter)
. Each sub-class ofRelNode
callsRelWriter.input(String, org.apache.calcite.rel.RelNode)
andRelWriter.item(String, Object)
to declare term-value pairs. -
getDetailLevel
Description copied from interface:RelWriter
Returns detail level at which plan should be generated.- Specified by:
getDetailLevel
in interfaceRelWriter
-
item
Description copied from interface:RelWriter
Adds an attribute to the explanation of the current node. -
done
Description copied from interface:RelWriter
Writes the completed explanation. -
simple
Converts the collected terms and values to a string. Does not write to the parent writer. -
expand
public boolean expand()Description copied from interface:RelWriter
Returns whether the writer needs to expand node's detail information when printing plan. For example, LogicalSort(sort0=[$0], dir0=[ASC]) will be expanded to LogicalSort(sort0=[$0], dir0=[ASC-nulls-last]).
-