class Google::Apis::SpannerV1::QueryPlan

Contains an ordered list of nodes appearing in the query plan.

Attributes

plan_nodes[RW]

The nodes in the query plan. Plan nodes are returned in pre-order starting with the plan root. Each PlanNode's `id` corresponds to its index in ` plan_nodes`. Corresponds to the JSON property `planNodes` @return [Array<Google::Apis::SpannerV1::PlanNode>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 3107
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/spanner_v1/classes.rb, line 3112
def update!(**args)
  @plan_nodes = args[:plan_nodes] if args.key?(:plan_nodes)
end