From cac9ec73db35a6d38d33f271f4724da486c60e9f Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Thu, 25 Mar 2021 10:44:25 +0100 Subject: [PATCH] Refs #31003 -- Moved note about return value of QuerySet.bulk_create() to the first paragraph. --- docs/ref/models/querysets.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index add56ca4fd8..e874211a548 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2157,9 +2157,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'), ... ]) @@ -2210,8 +2210,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. - ``bulk_update()`` ~~~~~~~~~~~~~~~~~