Fixed #28817 -- Made QuerySet.iterator() use server-side cursors after values() and values_list().

This commit is contained in:
Dražen Odobašić 2017-11-19 10:13:10 -05:00 committed by Tim Graham
parent 6cb6382639
commit d97f026a7a
4 changed files with 27 additions and 7 deletions

View file

@ -18,3 +18,6 @@ Bugfixes
* Fixed incorrect index name truncation when using a namespaced ``db_table``
(:ticket:`28792`).
* Made ``QuerySet.iterator()`` use server-side cursors on PostgreSQL after
``values()`` and ``values_list()`` (:ticket:`28817`).