summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlberto Avila <albertoavila@gmail.com>2016-01-08 14:20:15 -0600
committerTim Graham <timograham@gmail.com>2016-01-13 08:38:07 -0500
commit5b3c66d8b64add684489f5010e43de73e7acdd04 (patch)
treeb152388915057b9391d03479c9efd9bbae76edfd /docs
parente625859f086375dac743fcdcb61890ae2dcefb93 (diff)
[1.8.x] Fixed #26071 -- Fixed crash with __in lookup in a Case expression.
Partial backport of afe0bb7b13bb8dc4370f32225238012c873b0ee3 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.9.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.9.txt b/docs/releases/1.8.9.txt
index 080d6506e8..8c5445b549 100644
--- a/docs/releases/1.8.9.txt
+++ b/docs/releases/1.8.9.txt
@@ -23,3 +23,6 @@ Bugfixes
``db_index=True`` or ``unique=True`` to a ``CharField`` or ``TextField`` that
already had the other specified, or when removing one of them from a field
that had both (:ticket:`26034`).
+
+* Fixed a crash when using an ``__in`` lookup inside a ``Case`` expression
+ (:ticket:`26071`).