1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

Fixed #34464 -- Fixed queryset aggregation over group by reference.

Regression in 59bea9efd2.

Refs #28477.

Thanks Ian Cubitt for the report.
This commit is contained in:
Simon Charette
2023-04-06 08:19:53 -04:00
committed by Mariusz Felisiak
parent 1c7aed71ec
commit 9daf8b4109
3 changed files with 13 additions and 0 deletions

View File

@@ -15,3 +15,6 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused a crash of
:class:`~django.contrib.postgres.search.SearchVector` function with ``%``
characters (:ticket:`34459`).
* Fixed a regression in Django 4.2 that caused aggregation over query that
uses explicit grouping to group against the wrong columns (:ticket:`34464`).