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

Refs #34551 -- Fixed QuerySet.aggregate() crash on precending aggregation reference.

Regression in 1297c0d0d7.

Refs #31679.
This commit is contained in:
Simon Charette
2023-05-21 23:49:05 -04:00
committed by Mariusz Felisiak
parent 89f10a80d7
commit 2ee01747c3
4 changed files with 37 additions and 9 deletions

View File

@@ -28,3 +28,7 @@ Bugfixes
* Fixed a regression in Django 4.2 where nonexistent stylesheet was linked on a
“Congratulations!” page (:ticket:`34588`).
* Fixed a regression in Django 4.2 that caused a crash of
``QuerySet.aggregate()`` with expressions referencing other aggregates
(:ticket:`34551`).