summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-30 06:40:41 -0400
committerTim Graham <timograham@gmail.com>2017-05-30 06:41:50 -0400
commit9b9a81024a4955d6d3fb9f440b89567bb1634090 (patch)
tree449af5b3776a48021efecd1d875c95255c0b5fc1 /docs
parent3e17b0222c5b8d3961973e4d8a9fde5ffa4f53e4 (diff)
[1.11.x] Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.
Thanks Simon Charette for the fix. Backport of f04495521ade8a2befc1aca70dd0a2c7aad4c987 from master
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`).