summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2021-03-25 10:44:25 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-03-25 20:35:40 +0100
commit3eb72ad30f89e6774bfbf0f1223442493955fd74 (patch)
treece4f7fe98819f2b21044f4e9b9e073026b9cb755 /docs
parent601ceddf79073c3b089a5e8d68bbb5dc6b207663 (diff)
[3.2.x] Refs #31003 -- Moved note about return value of QuerySet.bulk_create() to the first paragraph.
Backport of cac9ec73db35a6d38d33f271f4724da486c60e9f from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index ce843cff9b..7b6709ae8c 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2173,9 +2173,9 @@ exists in the database, an :exc:`~django.db.IntegrityError` is raised.
This method inserts the provided list of objects into the database in an
efficient manner (generally only 1 query, no matter how many objects there
-are)::
+are), and returns created objects as a list, in the same order as provided::
- >>> Entry.objects.bulk_create([
+ >>> objs = Entry.objects.bulk_create([
... Entry(headline='This is a test'),
... Entry(headline='This is only a test'),
... ])
@@ -2226,8 +2226,6 @@ normally supports it).
.. _MySQL documentation: https://dev.mysql.com/doc/refman/en/sql-mode.html#ignore-strict-comparison
.. _MariaDB documentation: https://mariadb.com/kb/en/ignore/
-Returns ``objs`` as cast to a list, in the same order as provided.
-
.. versionchanged:: 3.1
Support for the fetching primary key attributes on MariaDB 10.5+ was added.