summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorNick Pope <nick.pope@flightdataservices.com>2018-12-19 23:01:44 +0000
committerTim Graham <timograham@gmail.com>2018-12-24 11:14:58 -0500
commit83677faf860f1a25acd667131275307abaa23fc4 (patch)
tree574d5f7451ae1a59d116447005071f2bb262741b /docs/ref/models
parent5d25804eaf81795c7d457e5a2a9f0b9b0989136c (diff)
Fixed #30056 -- Added SQLite support for StdDev and Variance functions.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/querysets.txt16
1 files changed, 4 insertions, 12 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 81a82fe7b6..9dd661e6a7 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -3400,12 +3400,9 @@ by the aggregate.
By default, ``StdDev`` returns the population standard deviation. However,
if ``sample=True``, the return value will be the sample standard deviation.
- .. admonition:: SQLite
+ .. versionchanged:: 2.2
- SQLite doesn't provide ``StdDev`` out of the box. An implementation
- is available as an extension module for SQLite. Consult the `SQLite
- documentation`_ for instructions on obtaining and installing this
- extension.
+ SQLite support was added.
``Sum``
~~~~~~~
@@ -3434,14 +3431,9 @@ by the aggregate.
By default, ``Variance`` returns the population variance. However,
if ``sample=True``, the return value will be the sample variance.
- .. admonition:: SQLite
+ .. versionchanged:: 2.2
- SQLite doesn't provide ``Variance`` out of the box. An implementation
- is available as an extension module for SQLite. Consult the `SQLite
- documentation`_ for instructions on obtaining and installing this
- extension.
-
-.. _SQLite documentation: https://www.sqlite.org/contrib
+ SQLite support was added.
Query-related tools
===================