1
0
mirror of https://github.com/django/django.git synced 2025-10-29 00:26:07 +00:00

[2.0.x] Fixed #28944 -- Fixed crash when chaining values()/values_list() after QuerySet.select_for_update(of=()).

Backport of c21f158295 from master
This commit is contained in:
Ran Benita
2017-12-23 11:35:08 +02:00
committed by Tim Graham
parent 830636df73
commit 4e4619a2b8
3 changed files with 34 additions and 8 deletions

View File

@@ -37,3 +37,6 @@ Bugfixes
* Fixed crash on SQLite when renaming a field in a model referenced by a
``ManyToManyField`` (:ticket:`28884`).
* Fixed a crash when chaining ``values()`` or ``values_list()`` after
``QuerySet.select_for_update(of=(...))`` (:ticket:`28944`).