Class RelWriterImpl

java.lang.Object
org.apache.calcite.rel.externalize.RelWriterImpl
All Implemented Interfaces:
RelWriter
Direct Known Subclasses:
RelDotWriter, RelXmlWriter

public class RelWriterImpl extends Object implements RelWriter
Implementation of RelWriter.
  • Field Details

    • pw

      protected final PrintWriter pw
    • detailLevel

      protected final SqlExplainLevel detailLevel
    • withIdPrefix

      protected final boolean withIdPrefix
    • expand

      protected final boolean expand
    • spacer

      protected final org.apache.calcite.avatica.util.Spacer spacer
  • Constructor Details

  • Method Details

    • explain_

      protected void explain_(RelNode rel, List<Pair<String,@Nullable Object>> values)
    • explain

      public final void explain(RelNode rel, List<Pair<String,@Nullable Object>> valueList)
      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 of RelNode calls RelWriter.input(String, org.apache.calcite.rel.RelNode) and RelWriter.item(String, Object) to declare term-value pairs.

      Specified by:
      explain in interface RelWriter
      Parameters:
      rel - Relational expression
      valueList - List of term-value pairs
    • getDetailLevel

      public SqlExplainLevel getDetailLevel()
      Description copied from interface: RelWriter
      Returns detail level at which plan should be generated.
      Specified by:
      getDetailLevel in interface RelWriter
    • item

      public RelWriter item(String term, @Nullable Object value)
      Description copied from interface: RelWriter
      Adds an attribute to the explanation of the current node.
      Specified by:
      item in interface RelWriter
      Parameters:
      term - Term for attribute, e.g. "joinType"
      value - Attribute value
    • done

      public RelWriter done(RelNode node)
      Description copied from interface: RelWriter
      Writes the completed explanation.
      Specified by:
      done in interface RelWriter
    • simple

      public String 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]).
      Specified by:
      expand in interface RelWriter