From 3d3e955efaaeb4cc968e522592c5c1e47bdc72c4 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Mon, 5 Dec 2022 12:08:21 +0100 Subject: [PATCH] Removed redundant definition of DatabaseFeatures.can_release_savepoints on MySQL. --- django/db/backends/mysql/features.py | 1 - 1 file changed, 1 deletion(-) 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