mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
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 a0c03c62a8
.
Thanks Tim Graham and Carlton Gibson for reviews.
This commit is contained in:
parent
e1f13f1551
commit
0b66c3b442
4 changed files with 21 additions and 4 deletions
|
@ -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`).
|
||||
|
|
|
@ -18,3 +18,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`).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue