Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
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
4 changes: 4 additions & 0 deletions django_spanner/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,10 @@ def is_usable(self):

return True

# The usual way to start a transaction is to turn autocommit off.
# Spanner DB API does not properly start a transaction when disabling
# autocommit. To avoid this buggy behavior and to actually enter a new
# transaction, an explicit SELECT 1 is required.
def _start_transaction_under_autocommit(self):
"""
Start a transaction explicitly in autocommit mode.
Expand Down