summaryrefslogtreecommitdiff
path: root/django/db/backends/mysql/features.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-12-05 12:08:21 +0100
committerGitHub <noreply@github.com>2022-12-05 12:08:21 +0100
commit3d3e955efaaeb4cc968e522592c5c1e47bdc72c4 (patch)
tree9296ef848c9ef22c5029335cec40db4528931f40 /django/db/backends/mysql/features.py
parent48531f53ae9c5781094c91b6aaec204920359018 (diff)
downloaddjango-3d3e955efaaeb4cc968e522592c5c1e47bdc72c4.tar.gz
Removed redundant definition of DatabaseFeatures.can_release_savepoints on MySQL.
Diffstat (limited to 'django/db/backends/mysql/features.py')
-rw-r--r--django/db/backends/mysql/features.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py
index 471853b1a3..563159138c 100644
--- a/django/db/backends/mysql/features.py
+++ b/django/db/backends/mysql/features.py
@@ -16,7 +16,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
supports_date_lookup_using_string = False
supports_timezones = False
requires_explicit_null_ordering_when_grouping = True
- can_release_savepoints = True
atomic_transactions = False
can_clone_databases = True
supports_temporal_subtraction = True