summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimone Pellizzari <simone6021@libero.it>2019-04-06 13:45:22 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-06 15:15:40 +0200
commit268ed9cd8adfda0eb789a9f6c58c91684b4567d9 (patch)
treef492ae103ec503986a1e5c9d4362871452be70b0 /docs
parent9da25fb832ae9db1a26f3796dcc9df2546d04f2f (diff)
[2.2.x] Fixed #30332 -- Fixed crash of ordering by expressions with params in ArrayAgg and StringAgg.
Backport of d0315584b5ed6a47b486e65f6c88f80189f337ef from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.1.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/2.2.1.txt b/docs/releases/2.2.1.txt
index b24db37c1a..f7ac012fb7 100644
--- a/docs/releases/2.2.1.txt
+++ b/docs/releases/2.2.1.txt
@@ -17,3 +17,8 @@ Bugfixes
* Fixed a regression in Django 2.2 that caused a crash when loading the
template for the technical 500 debug page (:ticket:`30324`).
+
+* Fixed crash of ``ordering`` argument in
+ :class:`~django.contrib.postgres.aggregates.ArrayAgg` and
+ :class:`~django.contrib.postgres.aggregates.StringAgg` when it contains an
+ expression with params (:ticket:`30332`).