Class: Google::Apis::SpannerV1::ShortRepresentation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/representations.rb

Overview

Condensed representation of a node and its subtree. Only present for SCALAR PlanNode(s).

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ShortRepresentation

Returns a new instance of ShortRepresentation



2514
2515
2516
# File 'generated/google/apis/spanner_v1/classes.rb', line 2514

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

A string representation of the expression subtree rooted at this node. Corresponds to the JSON property description

Returns:

  • (String)


2503
2504
2505
# File 'generated/google/apis/spanner_v1/classes.rb', line 2503

def description
  @description
end

#subqueriesHash<String,Fixnum>

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. Corresponds to the JSON property subqueries

Returns:

  • (Hash<String,Fixnum>)


2512
2513
2514
# File 'generated/google/apis/spanner_v1/classes.rb', line 2512

def subqueries
  @subqueries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2519
2520
2521
2522
# File 'generated/google/apis/spanner_v1/classes.rb', line 2519

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @subqueries = args[:subqueries] if args.key?(:subqueries)
end