Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Correcting the proto field Id for field data_boost_enabled #915

Merged
merged 2 commits into from
Mar 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions google/cloud/spanner_v1/types/spanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ class ExecuteSqlRequest(proto.Message):
request_options (google.cloud.spanner_v1.types.RequestOptions):
Common options for this request.
data_boost_enabled (bool):
If this is for a partitioned read and this field is set to
If this is for a partitioned query and this field is set to
``true``, the request will be executed via Spanner
independent compute resources.

Expand Down Expand Up @@ -625,7 +625,7 @@ class QueryOptions(proto.Message):
)
data_boost_enabled: bool = proto.Field(
proto.BOOL,
number=15,
number=16,
)


Expand Down Expand Up @@ -1138,7 +1138,7 @@ class ReadRequest(proto.Message):
request_options (google.cloud.spanner_v1.types.RequestOptions):
Common options for this request.
data_boost_enabled (bool):
If this is for a partitioned query and this field is set to
If this is for a partitioned read and this field is set to
``true``, the request will be executed via Spanner
independent compute resources.

Expand Down Expand Up @@ -1192,7 +1192,7 @@ class ReadRequest(proto.Message):
)
data_boost_enabled: bool = proto.Field(
proto.BOOL,
number=16,
number=15,
)


Expand Down