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(samples): batch_update() results processing error #484

Merged
merged 4 commits into from Aug 15, 2021
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion samples/samples/snippets.py
Expand Up @@ -1509,6 +1509,8 @@ def delete_data_with_partitioned_dml(instance_id, database_id):
def update_with_batch_dml(instance_id, database_id):
"""Updates sample data in the database using Batch DML. """
# [START spanner_dml_batch_update]
from google.rpc.code_pb2 import OK

# instance_id = "your-spanner-instance"
# database_id = "your-spanner-db-id"

Expand All @@ -1529,7 +1531,13 @@ def update_with_batch_dml(instance_id, database_id):
)

def update_albums(transaction):
row_cts = transaction.batch_update([insert_statement, update_statement])
status, row_cts = transaction.batch_update([insert_statement, update_statement])

if status.code != OK:
# Do handling here.
# Note: the exception will still be raised when
# `commit` is called by `run_in_transaction`.
return

print("Executed {} SQL statements using Batch DML.".format(len(row_cts)))

Expand Down