-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: refuse DDL during transactions (#41)
DDL statements cannot be executed as part of a transaction on Cloud Spanner. Although it would be technically possible to execute a DDL statement while a transaction is active, it could cause confusion whether the statement is part of the transaction or not. The driver therefore should return an error if an application tries to execute a DDL statement during an active transaction. Fixes #31
- Loading branch information
Showing
2 changed files
with
9 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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