diff options
| author | David Sanders <1845938+shangxiao@users.noreply.github.com> | 2025-12-12 04:59:09 +1100 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-12-11 12:59:49 -0500 |
| commit | 6d4ccca48bd399e2e4a440b03d8d85ba5f2ea1ba (patch) | |
| tree | 372abc2e7b631edc4e5bd5402b66c6dbaa7d4171 | |
| parent | f8e55b39d43d70e406073a8b61dc912b9dfa4252 (diff) | |
[6.0.x] Refs #35444 -- Clarified StringAgg deprecation notice in docs/ref/contrib/postgres/aggregates.txt.
Backport of 8932a677258fbda34f24a1be6f426265148b0003 from main.
| -rw-r--r-- | docs/ref/contrib/postgres/aggregates.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt index d590eb384f..835d3a7862 100644 --- a/docs/ref/contrib/postgres/aggregates.txt +++ b/docs/ref/contrib/postgres/aggregates.txt @@ -196,6 +196,9 @@ General-purpose aggregation functions .. deprecated:: 6.0 + The PostgreSQL ``StringAgg`` class is deprecated in favor of the + generally available :class:`~django.db.models.StringAgg` class. + Returns the input values concatenated into a string, separated by the ``delimiter`` string, or ``default`` if there are no values. |
