summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorvarunkasyap <varunkasyap@hotmail.com>2026-02-02 13:50:16 +0530
committerJacob Walls <jacobtylerwalls@gmail.com>2026-02-10 16:47:44 -0500
commit3282d9f4edbe5d341a0fa2a8c62b435b3885ab64 (patch)
tree391e2c4601b4c25fbacad492f677d2cc383c77e9 /docs/ref
parent977345f70df64a1d524e185e05b956e57c612110 (diff)
Fixed #36890 -- Supported StringAgg(distinct=True) on SQLite with the default delimiter.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index c819015b25..579c0de302 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -4175,7 +4175,14 @@ by the aggregate.
.. attribute:: delimiter
A ``Value`` or expression representing the string that should separate
- each of the values. For example, ``Value(",")``.
+ each of the values. For example, ``Value(",")``. (On SQLite, the
+ literal delimiter ``Value(",")`` is the only delimiter compatible with
+ ``distinct=True``.)
+
+ .. versionchanged:: 6.1
+
+ Support for using ``distinct=True`` with a delimiter of
+ ``Value(",")`` on SQLite was added.
Query-related tools
===================