mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #31584 -- Fixed crash when chaining values()/values_list() after Exists() annotation and aggregation on Oracle.
Oracle requires the EXISTS expression to be wrapped in a CASE WHEN in
the GROUP BY clause.
Regression in efa1908f66
.
This commit is contained in:
parent
03537e2458
commit
3a941230c8
5 changed files with 9 additions and 5 deletions
|
@ -18,3 +18,7 @@ Bugfixes
|
|||
|
||||
* Fixed a regression in Django 3.0 where aggregates used wrong annotations when
|
||||
a queryset has multiple subqueries annotations (:ticket:`31568`).
|
||||
|
||||
* Fixed a regression in Django 3.0 where ``QuerySet.values()`` and
|
||||
``values_list()`` crashed if a queryset contained an aggregation and an
|
||||
``Exists()`` annotation on Oracle (:ticket:`31584`).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue