public sealed class ChildLink : IMessage<PlanNode.Types.ChildLink>, IEquatable<PlanNode.Types.ChildLink>, IDeepCloneable<PlanNode.Types.ChildLink>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Spanner v1 API class PlanNode.Types.ChildLink.
Metadata associated with a parent-child relationship appearing in a [PlanNode][google.spanner.v1.PlanNode].
Implements
IMessage<PlanNode.Types.ChildLink>, IEquatable<PlanNode.Types.ChildLink>, IDeepCloneable<PlanNode.Types.ChildLink>, IBufferMessage, IMessageNamespace
Google.Cloud.Spanner.V1Assembly
Google.Cloud.Spanner.V1.dll
Constructors
ChildLink()
public ChildLink()
ChildLink(PlanNode.Types.ChildLink)
public ChildLink(PlanNode.Types.ChildLink other)
Parameter | |
---|---|
Name | Description |
other | PlanNode.Types.ChildLink |
Properties
ChildIndex
public int ChildIndex { get; set; }
The node to which the link points.
Property Value | |
---|---|
Type | Description |
Int32 |
Type
public string Type { get; set; }
The type of the link. For example, in Hash Joins this could be used to distinguish between the build child and the probe child, or in the case of the child being an output variable, to represent the tag associated with the output variable.
Property Value | |
---|---|
Type | Description |
String |
Variable
public string Variable { get; set; }
Only present if the child node is [SCALAR][google.spanner.v1.PlanNode.Kind.SCALAR] and corresponds
to an output variable of the parent node. The field carries the name of
the output variable.
For example, a TableScan
operator that reads rows from a table will
have child links to the SCALAR
nodes representing the output variables
created for each column that is read by the operator. The corresponding
variable
fields will be set to the variable names assigned to the
columns.
Property Value | |
---|---|
Type | Description |
String |