Class: Google::Apis::SpannerV1::QueryOptions
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::QueryOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/spanner_v1/classes.rb,
lib/google/apis/spanner_v1/representations.rb,
lib/google/apis/spanner_v1/representations.rb
Overview
Query optimizer configuration.
Instance Attribute Summary collapse
-
#optimizer_version ⇒ String
An option to control the selection of optimizer version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueryOptions
constructor
A new instance of QueryOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QueryOptions
Returns a new instance of QueryOptions.
2426 2427 2428 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2426 def initialize(**args) update!(**args) end |
Instance Attribute Details
#optimizer_version ⇒ String
An option to control the selection of optimizer version. This parameter allows
individual queries to pick different query optimizer versions. Specifying "
latest" as a value instructs Cloud Spanner to use the latest supported query
optimizer version. If not specified, Cloud Spanner uses optimizer version set
at the database level options. Any other positive integer (from the list of
supported optimizer versions) overrides the default optimizer version for
query execution. The list of supported optimizer versions can be queried from
SPANNER_SYS.SUPPORTED_OPTIMIZER_VERSIONS. Executing a SQL statement with an
invalid optimizer version will fail with a syntax error (INVALID_ARGUMENT)
status. See https://cloud.google.com/spanner/docs/query-optimizer/manage-query-
optimizer for more information on managing the query optimizer. The
optimizer_version statement hint has precedence over this setting.
Corresponds to the JSON property optimizerVersion
2424 2425 2426 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2424 def optimizer_version @optimizer_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2431 2432 2433 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2431 def update!(**args) @optimizer_version = args[:optimizer_version] if args.key?(:optimizer_version) end |