Class: Google::Cloud::Spanner::V1::PlanNode::ChildLink

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/spanner/v1/query_plan.rb

Overview

Metadata associated with a parent-child relationship appearing in a PlanNode.

Instance Attribute Summary collapse

Instance Attribute Details

#child_index::Integer

Returns The node to which the link points.

Returns:

  • (::Integer)

    The node to which the link points.



85
86
87
88
# File 'proto_docs/google/spanner/v1/query_plan.rb', line 85

class ChildLink
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#type::String

Returns 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.

Returns:

  • (::String)

    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.



85
86
87
88
# File 'proto_docs/google/spanner/v1/query_plan.rb', line 85

class ChildLink
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#variable::String

Returns Only present if the child node is 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.

Returns:

  • (::String)

    Only present if the child node is 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.



85
86
87
88
# File 'proto_docs/google/spanner/v1/query_plan.rb', line 85

class ChildLink
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end