summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGuillaume Pannatier <guillaume.pannatier@gmail.com>2014-05-29 08:53:25 +0200
committerTim Graham <timograham@gmail.com>2014-05-30 08:01:21 -0400
commit7c6e96ec1f99289740132135895be83776cc9ca5 (patch)
tree4efeaaa38f843322d29080b6bc039e8d0da4e6d0 /docs
parent9cbf7f25efa6ba3c4419b46fa11977e8b967aa26 (diff)
Fixed #22710 -- Documented aggregation behavior for empty QuerySets.
Thanks matklad for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index d47f8d3a7f..0328295c9b 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2631,6 +2631,12 @@ aggregate functions, see
aggregation on date/time fields in SQLite will raise
``NotImplementedError``.
+.. admonition:: Note
+
+ Aggregation functions will return ``None`` when used with an empty
+ ``QuerySet``. For example, the ``Count`` aggregation function will return
+ ``None`` instead of ``0`` if the ``QuerySet`` contains no entries.
+
Avg
~~~