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

Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.

Thanks Simon Charette for the fix.
This commit is contained in:
Tim Graham
2017-05-30 06:40:41 -04:00
committed by GitHub
parent 17ed0d36bc
commit f04495521a
4 changed files with 17 additions and 2 deletions

View File

@@ -39,3 +39,6 @@ Bugfixes
* Fixed ``MultipleObjectMixin.paginate_queryset()`` crash on Python 2 if the
``InvalidPage`` message contains non-ASCII (:ticket:`28204`).
* Prevented ``Subquery`` from adding an unnecessary ``CAST`` which resulted in
invalid SQL (:ticket:`28199`).