diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-04-13 12:15:52 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-04-13 12:54:32 +0200 |
| commit | f89b11b879b83aa505dc8231da5f06ca4b1b062e (patch) | |
| tree | 7513e4412c5cbfc8da890248d4d7bf5fecab75a4 /docs | |
| parent | 46496a542c2ff9f273e090073e9c8071acb1a4a4 (diff) | |
[1.11.x] Fixed #29286 -- Fixed column mismatch crash with QuerySet.values() or values_list() after combining an annotated and unannotated queryset with union(), difference(), or intersection().
Regression in a0c03c62a8ac586e5be5b21393c925afa581efaf.
Thanks Tim Graham and Carlton Gibson for reviews.
Backport of 0b66c3b442875627fa6daef4ac1e90900d74290b from master.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.11.13.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.11.13.txt b/docs/releases/1.11.13.txt index f72ccd8fd2..4c55454bcd 100644 --- a/docs/releases/1.11.13.txt +++ b/docs/releases/1.11.13.txt @@ -15,3 +15,8 @@ Bugfixes * Fixed crashes in ``django.contrib.admindocs`` when a view is a callable object, such as ``django.contrib.syndication.views.Feed`` (:ticket:`29296`). + +* Fixed a regression in Django 1.11.12 where ``QuerySet.values()`` or + ``values_list()`` after combining an annotated and unannotated queryset with + ``union()``, ``difference()``, or ``intersection()`` crashed due to mismatching + columns (:ticket:`29286`). |
