summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2014-10-07 16:07:46 +0300
committerTim Graham <timograham@gmail.com>2014-11-20 13:53:28 -0500
commit01f2cf2aecc932d43b20b55fc19a8fa440457b5f (patch)
tree9bcbdba8451ca6bb5a1ffa8471aca328c43c510d /docs
parent2e2607870d6201f305e56ab4117bbce2fef63f17 (diff)
[1.7.x] Fixed #23605 -- Fixed nested subquery regression
Added relabeled_clone() method to sql.Query to fix the problem. It manifested itself in rare cases where at least double nested subquery's filter condition might target non-existing alias. Thanks to Trac alias ris for reporting the problem. Backport of 5c481db29572a387651681b43d5d4523f96b3793 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 8af832d1a5..cfa68b8b3a 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -71,3 +71,6 @@ Bugfixes
* Avoided unnecessary rollbacks of migrations from other apps when migrating
backwards (:ticket:`23410`).
+
+* Fixed a rare query error when using deeply nested subqueries
+ (:ticket:`23605`).