summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/backends/mysql/features.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py
index 5af80fcb3c..abeef0549a 100644
--- a/django/db/backends/mysql/features.py
+++ b/django/db/backends/mysql/features.py
@@ -187,11 +187,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
@cached_property
def update_can_self_select(self):
- return self.connection.mysql_is_mariadb and self.connection.mysql_version >= (
- 10,
- 3,
- 2,
- )
+ return self.connection.mysql_is_mariadb
@cached_property
def can_introspect_foreign_keys(self):