Class: Google::Spanner::V1::PlanNode

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb

Overview

Node information for nodes appearing in a QueryPlan#plan_nodes.

Defined Under Namespace

Modules: Kind Classes: ChildLink, ShortRepresentation

Instance Attribute Summary collapse

Instance Attribute Details

Returns List of child node indexes and their relationship to this parent.

Returns:



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb', line 54

class PlanNode
  # Metadata associated with a parent-child relationship appearing in a
  # PlanNode.
  # @!attribute [rw] child_index
  #   @return [Integer]
  #     The node to which the link points.
  # @!attribute [rw] type
  #   @return [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.
  # @!attribute [rw] variable
  #   @return [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.
  class ChildLink; end

  # Condensed representation of a node and its subtree. Only present for
  # +SCALAR+ PlanNode(s).
  # @!attribute [rw] description
  #   @return [String]
  #     A string representation of the expression subtree rooted at this node.
  # @!attribute [rw] subqueries
  #   @return [Hash{String => Integer}]
  #     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.
  class ShortRepresentation; end

  # The kind of PlanNode. Distinguishes between the two different kinds of
  # nodes that can appear in a query plan.
  module Kind
    # Not specified.
    KIND_UNSPECIFIED = 0

    # Denotes a Relational operator node in the expression tree. Relational
    # operators represent iterative processing of rows during query execution.
    # For example, a +TableScan+ operation that reads rows from a table.
    RELATIONAL = 1

    # Denotes a Scalar node in the expression tree. Scalar nodes represent
    # non-iterable entities in the query plan. For example, constants or
    # arithmetic operators appearing inside predicate expressions or references
    # to column names.
    SCALAR = 2
  end
end

#display_nameString

Returns The display name for the node.

Returns:

  • (String)

    The display name for the node.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb', line 54

class PlanNode
  # Metadata associated with a parent-child relationship appearing in a
  # PlanNode.
  # @!attribute [rw] child_index
  #   @return [Integer]
  #     The node to which the link points.
  # @!attribute [rw] type
  #   @return [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.
  # @!attribute [rw] variable
  #   @return [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.
  class ChildLink; end

  # Condensed representation of a node and its subtree. Only present for
  # +SCALAR+ PlanNode(s).
  # @!attribute [rw] description
  #   @return [String]
  #     A string representation of the expression subtree rooted at this node.
  # @!attribute [rw] subqueries
  #   @return [Hash{String => Integer}]
  #     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.
  class ShortRepresentation; end

  # The kind of PlanNode. Distinguishes between the two different kinds of
  # nodes that can appear in a query plan.
  module Kind
    # Not specified.
    KIND_UNSPECIFIED = 0

    # Denotes a Relational operator node in the expression tree. Relational
    # operators represent iterative processing of rows during query execution.
    # For example, a +TableScan+ operation that reads rows from a table.
    RELATIONAL = 1

    # Denotes a Scalar node in the expression tree. Scalar nodes represent
    # non-iterable entities in the query plan. For example, constants or
    # arithmetic operators appearing inside predicate expressions or references
    # to column names.
    SCALAR = 2
  end
end

#execution_statsGoogle::Protobuf::Struct

Returns The execution statistics associated with the node, contained in a group of key-value pairs. Only present if the plan was returned as a result of a profile query. For example, number of executions, number of rows/time per execution etc.

Returns:

  • (Google::Protobuf::Struct)

    The execution statistics associated with the node, contained in a group of key-value pairs. Only present if the plan was returned as a result of a profile query. For example, number of executions, number of rows/time per execution etc.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb', line 54

class PlanNode
  # Metadata associated with a parent-child relationship appearing in a
  # PlanNode.
  # @!attribute [rw] child_index
  #   @return [Integer]
  #     The node to which the link points.
  # @!attribute [rw] type
  #   @return [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.
  # @!attribute [rw] variable
  #   @return [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.
  class ChildLink; end

  # Condensed representation of a node and its subtree. Only present for
  # +SCALAR+ PlanNode(s).
  # @!attribute [rw] description
  #   @return [String]
  #     A string representation of the expression subtree rooted at this node.
  # @!attribute [rw] subqueries
  #   @return [Hash{String => Integer}]
  #     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.
  class ShortRepresentation; end

  # The kind of PlanNode. Distinguishes between the two different kinds of
  # nodes that can appear in a query plan.
  module Kind
    # Not specified.
    KIND_UNSPECIFIED = 0

    # Denotes a Relational operator node in the expression tree. Relational
    # operators represent iterative processing of rows during query execution.
    # For example, a +TableScan+ operation that reads rows from a table.
    RELATIONAL = 1

    # Denotes a Scalar node in the expression tree. Scalar nodes represent
    # non-iterable entities in the query plan. For example, constants or
    # arithmetic operators appearing inside predicate expressions or references
    # to column names.
    SCALAR = 2
  end
end

#indexInteger

Returns The PlanNode‘s index in Node list.

Returns:

  • (Integer)

    The PlanNode‘s index in Node list.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb', line 54

class PlanNode
  # Metadata associated with a parent-child relationship appearing in a
  # PlanNode.
  # @!attribute [rw] child_index
  #   @return [Integer]
  #     The node to which the link points.
  # @!attribute [rw] type
  #   @return [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.
  # @!attribute [rw] variable
  #   @return [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.
  class ChildLink; end

  # Condensed representation of a node and its subtree. Only present for
  # +SCALAR+ PlanNode(s).
  # @!attribute [rw] description
  #   @return [String]
  #     A string representation of the expression subtree rooted at this node.
  # @!attribute [rw] subqueries
  #   @return [Hash{String => Integer}]
  #     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.
  class ShortRepresentation; end

  # The kind of PlanNode. Distinguishes between the two different kinds of
  # nodes that can appear in a query plan.
  module Kind
    # Not specified.
    KIND_UNSPECIFIED = 0

    # Denotes a Relational operator node in the expression tree. Relational
    # operators represent iterative processing of rows during query execution.
    # For example, a +TableScan+ operation that reads rows from a table.
    RELATIONAL = 1

    # Denotes a Scalar node in the expression tree. Scalar nodes represent
    # non-iterable entities in the query plan. For example, constants or
    # arithmetic operators appearing inside predicate expressions or references
    # to column names.
    SCALAR = 2
  end
end

#kindGoogle::Spanner::V1::PlanNode::Kind

Returns Used to determine the type of node. May be needed for visualizing different kinds of nodes differently. For example, If the node is a SCALAR node, it will have a condensed representation which can be used to directly embed a description of the node in its parent.

Returns:

  • (Google::Spanner::V1::PlanNode::Kind)

    Used to determine the type of node. May be needed for visualizing different kinds of nodes differently. For example, If the node is a SCALAR node, it will have a condensed representation which can be used to directly embed a description of the node in its parent.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb', line 54

class PlanNode
  # Metadata associated with a parent-child relationship appearing in a
  # PlanNode.
  # @!attribute [rw] child_index
  #   @return [Integer]
  #     The node to which the link points.
  # @!attribute [rw] type
  #   @return [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.
  # @!attribute [rw] variable
  #   @return [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.
  class ChildLink; end

  # Condensed representation of a node and its subtree. Only present for
  # +SCALAR+ PlanNode(s).
  # @!attribute [rw] description
  #   @return [String]
  #     A string representation of the expression subtree rooted at this node.
  # @!attribute [rw] subqueries
  #   @return [Hash{String => Integer}]
  #     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.
  class ShortRepresentation; end

  # The kind of PlanNode. Distinguishes between the two different kinds of
  # nodes that can appear in a query plan.
  module Kind
    # Not specified.
    KIND_UNSPECIFIED = 0

    # Denotes a Relational operator node in the expression tree. Relational
    # operators represent iterative processing of rows during query execution.
    # For example, a +TableScan+ operation that reads rows from a table.
    RELATIONAL = 1

    # Denotes a Scalar node in the expression tree. Scalar nodes represent
    # non-iterable entities in the query plan. For example, constants or
    # arithmetic operators appearing inside predicate expressions or references
    # to column names.
    SCALAR = 2
  end
end

#metadataGoogle::Protobuf::Struct

Returns Attributes relevant to the node contained in a group of key-value pairs. For example, a Parameter Reference node could have the following information in its metadata:

{
  "parameter_reference": "param1",
  "parameter_type": "array"
}.

Returns:

  • (Google::Protobuf::Struct)

    Attributes relevant to the node contained in a group of key-value pairs. For example, a Parameter Reference node could have the following information in its metadata:

    {
      "parameter_reference": "param1",
      "parameter_type": "array"
    }
    


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb', line 54

class PlanNode
  # Metadata associated with a parent-child relationship appearing in a
  # PlanNode.
  # @!attribute [rw] child_index
  #   @return [Integer]
  #     The node to which the link points.
  # @!attribute [rw] type
  #   @return [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.
  # @!attribute [rw] variable
  #   @return [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.
  class ChildLink; end

  # Condensed representation of a node and its subtree. Only present for
  # +SCALAR+ PlanNode(s).
  # @!attribute [rw] description
  #   @return [String]
  #     A string representation of the expression subtree rooted at this node.
  # @!attribute [rw] subqueries
  #   @return [Hash{String => Integer}]
  #     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.
  class ShortRepresentation; end

  # The kind of PlanNode. Distinguishes between the two different kinds of
  # nodes that can appear in a query plan.
  module Kind
    # Not specified.
    KIND_UNSPECIFIED = 0

    # Denotes a Relational operator node in the expression tree. Relational
    # operators represent iterative processing of rows during query execution.
    # For example, a +TableScan+ operation that reads rows from a table.
    RELATIONAL = 1

    # Denotes a Scalar node in the expression tree. Scalar nodes represent
    # non-iterable entities in the query plan. For example, constants or
    # arithmetic operators appearing inside predicate expressions or references
    # to column names.
    SCALAR = 2
  end
end

#short_representationGoogle::Spanner::V1::PlanNode::ShortRepresentation

Returns Condensed representation for SCALAR nodes.

Returns:



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/google/cloud/spanner/v1/doc/google/spanner/v1/query_plan.rb', line 54

class PlanNode
  # Metadata associated with a parent-child relationship appearing in a
  # PlanNode.
  # @!attribute [rw] child_index
  #   @return [Integer]
  #     The node to which the link points.
  # @!attribute [rw] type
  #   @return [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.
  # @!attribute [rw] variable
  #   @return [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.
  class ChildLink; end

  # Condensed representation of a node and its subtree. Only present for
  # +SCALAR+ PlanNode(s).
  # @!attribute [rw] description
  #   @return [String]
  #     A string representation of the expression subtree rooted at this node.
  # @!attribute [rw] subqueries
  #   @return [Hash{String => Integer}]
  #     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.
  class ShortRepresentation; end

  # The kind of PlanNode. Distinguishes between the two different kinds of
  # nodes that can appear in a query plan.
  module Kind
    # Not specified.
    KIND_UNSPECIFIED = 0

    # Denotes a Relational operator node in the expression tree. Relational
    # operators represent iterative processing of rows during query execution.
    # For example, a +TableScan+ operation that reads rows from a table.
    RELATIONAL = 1

    # Denotes a Scalar node in the expression tree. Scalar nodes represent
    # non-iterable entities in the query plan. For example, constants or
    # arithmetic operators appearing inside predicate expressions or references
    # to column names.
    SCALAR = 2
  end
end