Refs #26071 -- Added test for __in lookup in a Case expression.

Forwardport of 5b3c66d8b6 from stable/1.8.x
This commit is contained in:
Alberto Avila 2016-01-08 14:20:15 -06:00 committed by Tim Graham
parent d45cfefbad
commit cca151d196
2 changed files with 15 additions and 1 deletions

View file

@ -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`).