summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/aggregates/mixins.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #34016 -- Fixed QuerySet.values()/values_list() crash on ArrayAgg() ↵Alexander Kerkum2022-09-171-2/+5
| | | | | | and JSONBAgg(). Regression in e06dc4571ea9fd5723c8029959b95808be9f8812.
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-1/+0
|
* Refs #33304 -- Enclosed aggregate ordering logic in an expression.Simon Charette2021-11-231-35/+14
| | | | | This greatly simplifies the implementation of contrib.postgres' OrderableAggMixin and allows for reuse in Window expressions.
* Fixed #33262 -- Fixed crash of conditional aggregation on Exists().Hannes Ljungberg2021-11-041-1/+1
|
* Refs #32096 -- Fixed crash of ArrayAgg/StringAgg/JSONBAgg with ordering over ↵Mariusz Felisiak2020-10-141-1/+1
| | | | | | | | JSONField key transforms. Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Thanks Igor Jerosimić for the report.
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-1/+1
|
* Fixed CVE-2020-7471 -- Properly escaped StringAgg(delimiter) parameter.Simon Charette2020-02-031-2/+2
|
* Fixed #31097 -- Fixed crash of ArrayAgg and StringAgg with filter when used ↵David Wobrock2019-12-311-10/+1
| | | | in Subquery.
* Fixed #30315 -- Fixed crash of ArrayAgg and StringAgg with ordering when ↵Caio Ariede2019-05-281-0/+6
| | | | used in Subquery.
* Fixed #30332 -- Fixed crash of ordering by expressions with params in ↵Simone Pellizzari2019-04-061-6/+10
| | | | ArrayAgg and StringAgg.
* Fixed #26067 -- Added ordering support to ArrayAgg and StringAgg.Floris den Hengst2018-06-281-0/+47