Skip to content

Commit 428aa1e

Browse files
fix: Correcting the proto field Id for field data_boost_enabled (#915)
* fix!: Correcting the proto field Id for field data_boost_enabled PiperOrigin-RevId: 517156905 Source-Link: googleapis/googleapis@f30cd5e Source-Link: googleapis/googleapis-gen@6a3b040 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmEzYjA0MGRhZWY3ZGIzZmMzYjg3OWFkMDhmNTQ4MGFhMDM3ODE4YSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent e3bfa1a commit 428aa1e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

google/cloud/spanner_v1/types/spanner.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ class ExecuteSqlRequest(proto.Message):
477477
request_options (google.cloud.spanner_v1.types.RequestOptions):
478478
Common options for this request.
479479
data_boost_enabled (bool):
480-
If this is for a partitioned read and this field is set to
480+
If this is for a partitioned query and this field is set to
481481
``true``, the request will be executed via Spanner
482482
independent compute resources.
483483
@@ -625,7 +625,7 @@ class QueryOptions(proto.Message):
625625
)
626626
data_boost_enabled: bool = proto.Field(
627627
proto.BOOL,
628-
number=15,
628+
number=16,
629629
)
630630

631631

@@ -1138,7 +1138,7 @@ class ReadRequest(proto.Message):
11381138
request_options (google.cloud.spanner_v1.types.RequestOptions):
11391139
Common options for this request.
11401140
data_boost_enabled (bool):
1141-
If this is for a partitioned query and this field is set to
1141+
If this is for a partitioned read and this field is set to
11421142
``true``, the request will be executed via Spanner
11431143
independent compute resources.
11441144
@@ -1192,7 +1192,7 @@ class ReadRequest(proto.Message):
11921192
)
11931193
data_boost_enabled: bool = proto.Field(
11941194
proto.BOOL,
1195-
number=16,
1195+
number=15,
11961196
)
11971197

11981198

0 commit comments

Comments
 (0)