summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/models')
-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
===================