summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2014-04-28 15:27:36 +0300
committerAnssi Kääriäinen <akaariai@gmail.com>2014-05-05 13:27:54 +0300
commit0e3704963693ddfaaa525054c42333f6ffdb4b47 (patch)
treeca52e6ed08104c48486ef442d0a97d277cbc5480 /docs
parent034866204b39f797c73997b03cd90443aa03aa91 (diff)
[1.6.x] Fixed #22429 -- Incorrect SQL when using ~Q and F
Backpatch of 5e1f4656b98816c96a1cc051224c1b699db480e0 from master. Conflicts: django/db/models/sql/query.py tests/queries/models.py tests/queries/tests.py
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.6.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.6.5.txt b/docs/releases/1.6.5.txt
index 3c46b953b7..891a688030 100644
--- a/docs/releases/1.6.5.txt
+++ b/docs/releases/1.6.5.txt
@@ -14,3 +14,6 @@ Bugfixes
* Fixed ``pgettext_lazy`` crash when receiving bytestring content on Python 2
(`#22565 <http://code.djangoproject.com/ticket/22565>`_).
+
+* Fixed the SQL generated when filtering by a negated ``Q`` object that contains
+ a ``F`` object. (`#22429 <http://code.djangoproject.com/ticket/22429>`_).