summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.5.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.5.txt b/docs/releases/1.8.5.txt
index 917599447f..1141c2c798 100644
--- a/docs/releases/1.8.5.txt
+++ b/docs/releases/1.8.5.txt
@@ -32,3 +32,7 @@ Bugfixes
* Fixed migrations crash on MySQL when adding a text or a blob field with an
unhashable default (:ticket:`25393`).
+
+* Changed ``Count`` queries to execute ``COUNT(*)`` instead of ``COUNT('*')``
+ as versions of Django before 1.8 did (:ticket:`25377`). This may fix a
+ performance regression on some databases.