Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 280e0b4

Browse files
committed
fixed the index test case
1 parent 7f4dfdf commit 280e0b4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

samples/samples/snippets.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3567,19 +3567,20 @@ def add_split_points(instance_id, database_id):
35673567
spanner_database_admin.SplitPoints(
35683568
index="SingersByFirstLastName",
35693569
keys=[
3570-
spanner_database_admin.SplitPoints.Key(
3571-
key_parts=struct_pb2.ListValue(
3572-
values=[struct_pb2.Value(string_value="38")]
3573-
)
3574-
),
35753570
spanner_database_admin.SplitPoints.Key(
35763571
key_parts=struct_pb2.ListValue(
35773572
values=[
35783573
struct_pb2.Value(string_value="Jane"),
35793574
struct_pb2.Value(string_value="Doe"),
35803575
]
35813576
)
3577+
),
3578+
spanner_database_admin.SplitPoints.Key(
3579+
key_parts=struct_pb2.ListValue(
3580+
values=[struct_pb2.Value(string_value="38")]
3581+
)
35823582
),
3583+
35833584
],
35843585
),
35853586
],

0 commit comments

Comments
 (0)