diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-06-24 07:29:58 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-06-27 06:21:31 +0200 |
| commit | 44ffd8d06fabc07d8333f31439e8dd39ea87329b (patch) | |
| tree | 5e43183077ab0fe592ba7012435cb4301f055d31 /django | |
| parent | 6f63e0ce8e36fbdb2d0c4dfd77ed3cf02e467f49 (diff) | |
Fixed #33796 -- Fixed ordered combined queryset crash when used in subquery on PostgreSQL and MySQL.
Thanks Shai Berger for the report.
Regression in 30a01441347d5a2146af2944b29778fa0834d4be.
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/backends/mysql/features.py | 19 | ||||
| -rw-r--r-- | django/db/backends/oracle/features.py | 5 | ||||
| -rw-r--r-- | django/db/models/sql/compiler.py | 5 |
3 files changed, 29 insertions, 0 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py index 1a7625bfa9..47e3ad0479 100644 --- a/django/db/backends/mysql/features.py +++ b/django/db/backends/mysql/features.py @@ -175,6 +175,25 @@ class DatabaseFeatures(BaseDatabaseFeatures): }, } ) + if ( + self.connection.mysql_is_mariadb and self.connection.mysql_version < (10, 4) + ) or ( + not self.connection.mysql_is_mariadb + and self.connection.mysql_version < (8,) + ): + skips.update( + { + "Parenthesized combined queries are not supported on MySQL < 8 and " + "MariaDB < 10.4": { + "queries.test_qs_combinators.QuerySetSetOperationTests." + "test_union_in_subquery", + "queries.test_qs_combinators.QuerySetSetOperationTests." + "test_union_in_subquery_related_outerref", + "queries.test_qs_combinators.QuerySetSetOperationTests." + "test_union_in_with_ordering", + } + } + ) if not self.supports_explain_analyze: skips.update( { diff --git a/django/db/backends/oracle/features.py b/django/db/backends/oracle/features.py index 289f786f5e..d5b87ac682 100644 --- a/django/db/backends/oracle/features.py +++ b/django/db/backends/oracle/features.py @@ -116,6 +116,11 @@ class DatabaseFeatures(BaseDatabaseFeatures): "migrations.test_operations.OperationTests." "test_alter_field_pk_fk_db_collation", }, + "Oracle raises an error when a subquery contains unnecessary ORDER BY " + "clause (#32786).": { + "queries.test_qs_combinators.QuerySetSetOperationTests." + "test_union_in_with_ordering", + }, } django_test_expected_failures = { # A bug in Django/cx_Oracle with respect to string handling (#23843). diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index 9c7bd8ea1a..461e1ae156 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -548,6 +548,11 @@ class SQLCompiler: or not features.supports_slicing_ordering_in_compound ): part_sql = "({})".format(part_sql) + elif ( + self.query.subquery + and features.supports_slicing_ordering_in_compound + ): + part_sql = "({})".format(part_sql) parts += ((part_sql, part_args),) except EmptyResultSet: # Omit the empty queryset with UNION and with DIFFERENCE if the |
