summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-09-25 09:56:24 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2025-10-03 11:25:17 -0400
commit0a09c60e97166e0188717ff340b4d93b72207e96 (patch)
treeee2b6a8e9665d3056b67304b38db5d34273986e4 /docs/ref
parent6cb641ba75b1e6eace9a46e3cbade70e4af2ff66 (diff)
Refs #36143, #28596 -- Avoided mentioning exact query parameter limit in bulk_create() docs.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 4be1759af2..aee10e55fc 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2445,8 +2445,8 @@ This has a number of caveats though:
Entry.objects.bulk_create(batch, batch_size)
The ``batch_size`` parameter controls how many objects are created in a single
-query. The default is to create all objects in one batch, except for SQLite
-where the default is such that at most 999 variables per query are used.
+query. The default is to create as many objects in one batch as the database
+will allow. (SQLite and Oracle limit the number of parameters in a query.)
On databases that support it (all but Oracle), setting the ``ignore_conflicts``
parameter to ``True`` tells the database to ignore failure to insert any rows