summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2015-05-05 14:11:58 +0300
committerTim Graham <timograham@gmail.com>2015-05-05 11:38:12 -0400
commit7b05d2fdaed582662d8f79130932f600f4f966a0 (patch)
tree5299e340503572e5b5f4e08e81c68244a4ee8c1c /docs
parent9096e2b5f75abf8e8882937bd3c3d47ccdc24e25 (diff)
Fixed #24752 -- query crash when reusing Case expressions
Case expressions weren't copied deep enough (self.cases list was reused resulting in an error).
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.2.txt b/docs/releases/1.8.2.txt
index c66539c9b7..a0c18e78bb 100644
--- a/docs/releases/1.8.2.txt
+++ b/docs/releases/1.8.2.txt
@@ -10,3 +10,6 @@ Bugfixes
========
* Fixed check for template engine alias uniqueness (:ticket:`24685`).
+
+* Fixed crash when reusing the same ``Case`` instance in a query
+ (:ticket:`24752`).