Fixed #33508 -- Fixed DatabaseFeatures.supports_index_column_ordering on MariaDB 10.8+.
This commit is contained in:
parent
26c166c3b0
commit
c1d168be0f
|
@ -316,10 +316,9 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def supports_index_column_ordering(self):
|
def supports_index_column_ordering(self):
|
||||||
return (
|
if self.connection.mysql_is_mariadb:
|
||||||
not self.connection.mysql_is_mariadb
|
return self.connection.mysql_version >= (10, 8)
|
||||||
and self.connection.mysql_version >= (8, 0, 1)
|
return self.connection.mysql_version >= (8, 0, 1)
|
||||||
)
|
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def supports_expression_indexes(self):
|
def supports_expression_indexes(self):
|
||||||
|
|
Loading…
Reference in New Issue