Refs #33713 -- Removed unnecessary skip for MariaDB 10.3.

This commit is contained in:
Mariusz Felisiak 2022-06-24 08:30:26 +02:00
parent 44ffd8d06f
commit 20b6e30858
1 changed files with 3 additions and 7 deletions

View File

@ -175,16 +175,12 @@ class DatabaseFeatures(BaseDatabaseFeatures):
}, },
} }
) )
if ( if not self.connection.mysql_is_mariadb and self.connection.mysql_version < (
self.connection.mysql_is_mariadb and self.connection.mysql_version < (10, 4) 8,
) or (
not self.connection.mysql_is_mariadb
and self.connection.mysql_version < (8,)
): ):
skips.update( skips.update(
{ {
"Parenthesized combined queries are not supported on MySQL < 8 and " "Parenthesized combined queries are not supported on MySQL < 8.": {
"MariaDB < 10.4": {
"queries.test_qs_combinators.QuerySetSetOperationTests." "queries.test_qs_combinators.QuerySetSetOperationTests."
"test_union_in_subquery", "test_union_in_subquery",
"queries.test_qs_combinators.QuerySetSetOperationTests." "queries.test_qs_combinators.QuerySetSetOperationTests."