Interface PlanNode.ShortRepresentationOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
PlanNode.ShortRepresentation, PlanNode.ShortRepresentation.Builder
Enclosing class:
PlanNode

public static interface PlanNode.ShortRepresentationOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    A mapping of (subquery variable name) -> (subquery node id) for cases where the `description` string of this node references a `SCALAR` subquery contained in the expression subtree rooted at this node.
    A string representation of the expression subtree rooted at this node.
    com.google.protobuf.ByteString
    A string representation of the expression subtree rooted at this node.
    Deprecated.
    int
    A mapping of (subquery variable name) -> (subquery node id) for cases where the `description` string of this node references a `SCALAR` subquery contained in the expression subtree rooted at this node.
    A mapping of (subquery variable name) -> (subquery node id) for cases where the `description` string of this node references a `SCALAR` subquery contained in the expression subtree rooted at this node.
    int
    getSubqueriesOrDefault(String key, int defaultValue)
    A mapping of (subquery variable name) -> (subquery node id) for cases where the `description` string of this node references a `SCALAR` subquery contained in the expression subtree rooted at this node.
    int
    A mapping of (subquery variable name) -> (subquery node id) for cases where the `description` string of this node references a `SCALAR` subquery contained in the expression subtree rooted at this node.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getDescription

      String getDescription()
       A string representation of the expression subtree rooted at this node.
       
      string description = 1;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
       A string representation of the expression subtree rooted at this node.
       
      string description = 1;
      Returns:
      The bytes for description.
    • getSubqueriesCount

      int getSubqueriesCount()
       A mapping of (subquery variable name) -> (subquery node id) for cases
       where the `description` string of this node references a `SCALAR`
       subquery contained in the expression subtree rooted at this node. The
       referenced `SCALAR` subquery may not necessarily be a direct child of
       this node.
       
      map<string, int32> subqueries = 2;
    • containsSubqueries

      boolean containsSubqueries(String key)
       A mapping of (subquery variable name) -> (subquery node id) for cases
       where the `description` string of this node references a `SCALAR`
       subquery contained in the expression subtree rooted at this node. The
       referenced `SCALAR` subquery may not necessarily be a direct child of
       this node.
       
      map<string, int32> subqueries = 2;
    • getSubqueries

      @Deprecated Map<String,Integer> getSubqueries()
      Deprecated.
      Use getSubqueriesMap() instead.
    • getSubqueriesMap

      Map<String,Integer> getSubqueriesMap()
       A mapping of (subquery variable name) -> (subquery node id) for cases
       where the `description` string of this node references a `SCALAR`
       subquery contained in the expression subtree rooted at this node. The
       referenced `SCALAR` subquery may not necessarily be a direct child of
       this node.
       
      map<string, int32> subqueries = 2;
    • getSubqueriesOrDefault

      int getSubqueriesOrDefault(String key, int defaultValue)
       A mapping of (subquery variable name) -> (subquery node id) for cases
       where the `description` string of this node references a `SCALAR`
       subquery contained in the expression subtree rooted at this node. The
       referenced `SCALAR` subquery may not necessarily be a direct child of
       this node.
       
      map<string, int32> subqueries = 2;
    • getSubqueriesOrThrow

      int getSubqueriesOrThrow(String key)
       A mapping of (subquery variable name) -> (subquery node id) for cases
       where the `description` string of this node references a `SCALAR`
       subquery contained in the expression subtree rooted at this node. The
       referenced `SCALAR` subquery may not necessarily be a direct child of
       this node.
       
      map<string, int32> subqueries = 2;