mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #22710 -- Amended aggregation note for empty QuerySets
Thanks smeaton for report and Joël Rochat for spell check
This commit is contained in:
parent
2f7a7842ba
commit
7f27cca5c5
1 changed files with 4 additions and 3 deletions
|
@ -2633,9 +2633,10 @@ aggregate functions, see
|
||||||
|
|
||||||
.. admonition:: Note
|
.. admonition:: Note
|
||||||
|
|
||||||
Aggregation functions will return ``None`` when used with an empty
|
Aggregation functions return ``None`` when used with an empty
|
||||||
``QuerySet``. For example, the ``Count`` aggregation function will return
|
``QuerySet``. For example, the ``Sum`` aggregation function returns ``None``
|
||||||
``None`` instead of ``0`` if the ``QuerySet`` contains no entries.
|
instead of ``0`` if the ``QuerySet`` contains no entries. An exception is
|
||||||
|
``Count``, which does return ``0`` if the ``QuerySet`` is empty.
|
||||||
|
|
||||||
Avg
|
Avg
|
||||||
~~~
|
~~~
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue