Fixed #23074 -- Avoided leaking savepoints in atomic.

Thanks Chow Loong Jin for the report and the initial patch.
This commit is contained in:
Aymeric Augustin 2014-07-28 14:30:41 +02:00
parent 53a61d82b3
commit 729e4ae4f0
6 changed files with 35 additions and 0 deletions

View file

@ -182,6 +182,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
requires_explicit_null_ordering_when_grouping = True
allows_auto_pk_0 = False
uses_savepoints = True
can_release_savepoints = True
atomic_transactions = False
supports_column_check_constraints = False