Skip to content

Commit fa2fa85

Browse files
committed
Enable DatabaseFeatures.supports_transactions
1 parent 9d04bfb commit fa2fa85

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

django_snowflake/features.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
5151
supports_slicing_ordering_in_compound = True
5252
supports_subqueries_in_group_by = False
5353
supports_temporal_subtraction = True
54-
# This really means "supports_nested_transactions". Snowflake supports a
55-
# single level of transaction, BEGIN + (ROLLBACK|COMMIT). Multiple BEGINS
56-
# contribute to the current (only) transaction.
57-
supports_transactions = False
54+
supports_transactions = True
5855
# This feature is specific to the Django fork used for testing.
5956
supports_tz_offsets = False
6057
supports_virtual_generated_columns = True

0 commit comments

Comments
 (0)