1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #34750 -- Fixed QuerySet.count() when grouping by unused multi-valued annotations.

Thanks Toan Vuong for the report.
Thanks Simon Charette for the review.

Regression in 59bea9efd2.
This commit is contained in:
Mariusz Felisiak
2023-08-01 16:16:28 +02:00
committed by GitHub
parent 5a3725594f
commit c9b9a52edc
3 changed files with 50 additions and 0 deletions

View File

@@ -15,3 +15,7 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused a crash when grouping by a
reference in a subquery (:ticket:`34748`).
* Fixed a regression in Django 4.2 that caused aggregation over query that
uses explicit grouping by multi-valued annotations to group against the wrong
columns (:ticket:`34750`).