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

feat(spanner): support commit options in mutation operations. #10668

Merged
merged 7 commits into from
Aug 14, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix comment
  • Loading branch information
rahul2393 committed Aug 14, 2024
commit 30d79eac9fe938feed59decbfbb57bb57cdb3f0e
3 changes: 1 addition & 2 deletions spanner/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -1859,8 +1859,7 @@ type writeOnlyTransaction struct {
// current transaction from the allowed tracking change streams with DDL option
// allow_txn_exclusion=true.
excludeTxnFromChangeStreams bool
// maxCommitDelay is the maximum time that the commit will be delayed by the
// backend before it is acknowledged.
// commitOptions are applied to the Commit request for the writeOnlyTransaction..
commitOptions CommitOptions
}

Expand Down
Loading