summaryrefslogtreecommitdiff
path: root/docs/releases/1.8.9.txt
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:56:36 -0500
commitcca151d196d520f799d3517a9719d03c0c8c9d8a (patch)
tree0f05547c3798f2f9a638e9e9e8e3bef0258a0b71 /docs/releases/1.8.9.txt
parentd45cfefbad4a6551cc40bf4c8c6d443da9a9d888 (diff)
Refs #26071 -- Added test for __in lookup in a Case expression.
Forwardport of 5b3c66d8b64add684489f5010e43de73e7acdd04 from stable/1.8.x
Diffstat (limited to 'docs/releases/1.8.9.txt')
-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`).