1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[2.0.x] Fixed #28856 -- Fixed a regression in caching of a GenericForeignKey pointing to a MTI model.

Regression in b9f8635f58.

Modified backport of e50add6ca1 from master
This commit is contained in:
Simon Charette
2017-11-29 01:06:45 -05:00
committed by Tim Graham
parent 4d3b8e199e
commit d31424fec1
3 changed files with 19 additions and 5 deletions

View File

@@ -27,3 +27,6 @@ Bugfixes
* Made query lookups for ``CICharField``, ``CIEmailField``, and ``CITextField``
use a ``citext`` cast (:ticket:`28702`).
* Fixed a regression in caching of a ``GenericForeignKey`` when the referenced
model instance uses multi-table inheritance (:ticket:`28856`).