summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Chainz <adam@adamj.eu>2015-09-10 17:07:09 +0100
committerTim Graham <timograham@gmail.com>2015-09-14 13:41:35 -0400
commit3fe3887a2ed94f7b15be769f6d81571031ec5627 (patch)
treeaa2b8fa24b4d20fd0782cdf58a04a353d956be2b /docs
parent4d933ad4181a511f3ced98edba4e17aff054e0e2 (diff)
Fixed #25377 -- Changed Count queries to execute COUNT(*) instead of COUNT('*').
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.