mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
Fixed DatabaseFeatures.can_introspect_check_constraints on MariaDB < 10.2.22, 10.3.0 - 10.3.9.
Regression in e2c6a0858d
.
This commit is contained in:
parent
6c379f1a18
commit
addabc492b
@ -99,8 +99,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
||||
def can_introspect_check_constraints(self):
|
||||
if self.connection.mysql_is_mariadb:
|
||||
version = self.connection.mysql_version
|
||||
if (version >= (10, 2, 22) and version < (10, 3)) or version >= (10, 3, 10):
|
||||
return True
|
||||
return (version >= (10, 2, 22) and version < (10, 3)) or version >= (10, 3, 10)
|
||||
return self.connection.mysql_version >= (8, 0, 16)
|
||||
|
||||
@cached_property
|
||||
|
Loading…
Reference in New Issue
Block a user