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

[2.0.x] Fixed #29067 -- Fixed regression in QuerySet.values_list(..., flat=True) followed by annotate().

Regression in 4dfd6b88d5.

Backport of 3187c89d6f from master
This commit is contained in:
Jon Dufresne
2018-01-25 20:28:34 -08:00
committed by Tim Graham
parent d06381debc
commit 61c74ae74f
3 changed files with 10 additions and 2 deletions

View File

@@ -14,3 +14,6 @@ Bugfixes
* Fixed incorrect foreign key nullification if a model has two foreign keys to
the same model and a target model is deleted (:ticket:`29016`).
* Fixed regression in the use of ``QuerySet.values_list(..., flat=True)``
followed by ``annotate()`` (:ticket:`29067`).