Package com.google.spanner.v1
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
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description 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.String
getDescription()
A string representation of the expression subtree rooted at this node.com.google.protobuf.ByteString
getDescriptionBytes()
A string representation of the expression subtree rooted at this node.Map<String,Integer>
getSubqueries()
Deprecated.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.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.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
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.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
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.UsegetSubqueriesMap()
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;
-
-