feat(spanner): support the last_statement flag#5920
Open
olavloite wants to merge 2 commits into
Open
Conversation
Spanner allows an application to indicate when a statement will be the last statement in a read/write transaction. Spanner can use this flag to optimize the execution of the last statement, as it means that Spanner can safely defer some of the internal verifications until the Commit call for the transaction.
Contributor
There was a problem hiding this comment.
Code Review
This pull request adds support for indicating whether a statement or a batch of DML statements is the last one in a read/write transaction, enabling Spanner to optimize execution. It introduces last_statement to Statement and StatementBuilder, and last_statements to BatchDml and BatchDmlBuilder, along with associated unit and integration tests. As there are no review comments, I have no additional feedback to provide.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5920 +/- ##
=======================================
Coverage 97.89% 97.90%
=======================================
Files 234 234
Lines 59904 59977 +73
=======================================
+ Hits 58644 58719 +75
+ Misses 1260 1258 -2 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
sakthivelmanii
approved these changes
Jun 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Spanner allows an application to indicate when a statement will be the last statement in a read/write transaction. Spanner can use this flag to optimize the execution of the last statement, as it means that Spanner can safely defer some of the internal verifications until the Commit call for the transaction.