summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2021-05-11 01:19:44 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-05-13 07:26:52 +0200
commitb81c7562fc33f50166d5120138d6398dc42b13c3 (patch)
treee7fe0581c08d4758aa5f2ba4213aa2af1d70c682 /docs
parent3733ae895780f17430924f1e20ee320556c62d05 (diff)
downloaddjango-b81c7562fc33f50166d5120138d6398dc42b13c3.tar.gz
Fixed #32717 -- Fixed filtering of querysets combined with the | operator.
Address a long standing bug in a Where.add optimization to discard equal nodes that was surfaced by implementing equality for Lookup instances in bbf141bcdc31f1324048af9233583a523ac54c94. Thanks Shaheed Haque for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/3.2.3.txt b/docs/releases/3.2.3.txt
index 14a143b203..315678b92a 100644
--- a/docs/releases/3.2.3.txt
+++ b/docs/releases/3.2.3.txt
@@ -10,3 +10,6 @@ Bugfixes
========
* Prepared for ``mysqlclient`` > 2.0.3 support (:ticket:`32732`).
+
+* Fixed a regression in Django 3.2 that caused the incorrect filtering of
+ querysets combined with the ``|`` operator (:ticket:`32717`).