Skip to content

Commit

Permalink
Enable DatabaseFeatures.supports_transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Apr 7, 2024
1 parent 3c0e563 commit aca90ab
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions django_snowflake/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
supports_slicing_ordering_in_compound = True
supports_subqueries_in_group_by = False
supports_temporal_subtraction = True
# This really means "supports_nested_transactions". Snowflake supports a
# single level of transaction, BEGIN + (ROLLBACK|COMMIT). Multiple BEGINS
# contribute to the current (only) transaction.
supports_transactions = False
supports_transactions = True
# This feature is specific to the Django fork used for testing.
supports_tz_offsets = False
supports_virtual_generated_columns = True
Expand Down

0 comments on commit aca90ab

Please sign in to comment.