summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-12-13 23:46:41 -0500
committerSimon Charette <charette.s@gmail.com>2015-12-14 13:12:36 -0500
commit8035cee92293f3319919c8248c7787ba43c05917 (patch)
tree1d210cccd6ea810ecc1854b33785ce7141ca28b0 /docs
parent5233b70070f8979f41ca1da2c1b1d78c8e30944e (diff)
Fixed #25882 -- Prevented fast deletes matching no rows from crashing on MySQL.
Thanks to Trac aliases gerricom for the report, raphaelmerx for the attempts to reproduce and Sergey Fedoseev and Tim for the review. Refs #16891
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.9.1.txt b/docs/releases/1.9.1.txt
index bc4a0be8ad..eee5a88737 100644
--- a/docs/releases/1.9.1.txt
+++ b/docs/releases/1.9.1.txt
@@ -34,3 +34,6 @@ Bugfixes
created by ``startapp`` on Python 2 (:ticket:`25909`). Add this line to your
own ``apps.py`` files created using Django 1.9 if you want your migrations
to work on both Python 2 and Python 3.
+
+* Prevented ``QuerySet.delete()`` from crashing on MySQL when querying across
+ relations (:ticket`25882`).