summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-30 06:40:41 -0400
committerGitHub <noreply@github.com>2017-05-30 06:40:41 -0400
commitf04495521ade8a2befc1aca70dd0a2c7aad4c987 (patch)
treeda0fc9cb6d952bf60bc5c9776ea4748aecc6255f /docs
parent17ed0d36bc3c380b7d8a0a30ceda09d98ab74fd4 (diff)
Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.
Thanks Simon Charette for the fix.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.2.txt b/docs/releases/1.11.2.txt
index 4dcfda7cc7..718dc386bb 100644
--- a/docs/releases/1.11.2.txt
+++ b/docs/releases/1.11.2.txt
@@ -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`).