Skip to content

Commit

Permalink
fix: add description for transaction autocommit (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
HemangChothani committed Jan 29, 2021
1 parent a0389d0 commit 8441edc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions django_spanner/base.py
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

0 comments on commit 8441edc

Please sign in to comment.