summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Barragán Merino <david.barragan@kaleidos.net>2016-10-25 16:51:45 +0200
committerTim Graham <timograham@gmail.com>2016-10-25 19:21:08 -0400
commitb3bd3aa07c026239dd39d1a37498dfd0a2f09caf (patch)
tree7556859c8f3c50efa4cfe404a5a5804709f4e40c /docs
parenta9d1d9528496bc5bed7c2d615a232f4ebc192676 (diff)
Fixed #27385 -- Fixed QuerySet.bulk_create() on PostgreSQL when the number of objects is a multiple plus one of batch_size.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.10.3.txt b/docs/releases/1.10.3.txt
index a45124fb3a..5bb340a3a8 100644
--- a/docs/releases/1.10.3.txt
+++ b/docs/releases/1.10.3.txt
@@ -20,3 +20,6 @@ Bugfixes
* Made the ``JavaScriptCatalog`` view respect the ``packages`` argument;
previously it was ignored (:ticket:`27374`).
+
+* Fixed ``QuerySet.bulk_create()`` on PostgreSQL when the number of objects is
+ a multiple plus one of ``batch_size`` (:ticket:`27385`).