summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-14 15:07:08 +0200
committerCarlton Gibson <carlton.gibson@noumenal.es>2020-05-14 15:10:28 +0200
commitb46b0f80e81bbf8fcf7e8c20c249c8041db5e227 (patch)
treec48469e91a489ea952596ab282416ca3894a1ed2 /docs
parentbebb7d4d7e9092cbc435c67f58ebdbffaa75e777 (diff)
[3.1.x] 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 efa1908f662c19038a944129c81462485c4a9fe8. Backport of 3a941230c85b2702a5e1cd97e17251ce21057efa from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.0.7.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.0.7.txt b/docs/releases/3.0.7.txt
index 0f1188724a..def27a49ec 100644
--- a/docs/releases/3.0.7.txt
+++ b/docs/releases/3.0.7.txt
@@ -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`).