summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPaweł Marczewski <pwmarcz@gmail.com>2015-05-24 19:05:56 +0200
committerTim Graham <timograham@gmail.com>2015-05-25 20:46:20 -0400
commit801a84ae329a24d9adf01b700429fe8f1285b2b8 (patch)
treee5688ae6ea8d0404d21c5c87857e9a8d40c9fda8 /docs
parent4df7e8483b2679fc1cba3410f08960bac6f51115 (diff)
Fixed #24835 -- Fixed QuerySet.exists() after an annotation with Count()
QuerySet.exists() incorrectly handled query.group_by = True case (grouping by all select fields), causing GROUP BY expressions to be wiped along with select fields.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.3.txt b/docs/releases/1.8.3.txt
index 09aa2d8fe7..d5bde6040c 100644
--- a/docs/releases/1.8.3.txt
+++ b/docs/releases/1.8.3.txt
@@ -14,3 +14,6 @@ Bugfixes
* Fixed crash during :djadmin:`makemigrations` if a migrations module either
is missing ``__init__.py`` or is a file (:ticket:`24848`).
+
+* Fixed ``exists()`` returning incorrect results after annotation with
+ ``Count()`` (:ticket:`24835`).