summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVytis Banaitis <vytis.banaitis@gmail.com>2017-02-17 20:34:22 +0200
committerTim Graham <timograham@gmail.com>2017-02-21 12:49:31 -0500
commitd03153e3b09c078a0622e45ecff37e43f3ab8972 (patch)
tree7b5712de84aca6f38b1631261a24068d7ae99bc9 /docs
parentd53fc7614de81e342a97d5626a047a3cbf002554 (diff)
[1.11.x] Fixed #27856 -- Improved accuracy of date subtraction on PostgreSQL.
Accuracy was incorrect when dates differ by a month or more. Backport of 4045fd56cb0f83d0f78de9aca073c7104e4cf8fd from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.6.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.10.6.txt b/docs/releases/1.10.6.txt
index b549ae1b9a..41a308bba8 100644
--- a/docs/releases/1.10.6.txt
+++ b/docs/releases/1.10.6.txt
@@ -17,3 +17,6 @@ Bugfixes
* Fixed a crash on Oracle and PostgreSQL when subtracting ``DurationField``
or ``IntegerField`` from ``DateField`` (:ticket:`27828`).
+
+* Fixed query expression date subtraction accuracy on PostgreSQL for
+ differences large an a month (:ticket:`27856`).