mirror of
https://github.com/django/django.git
synced 2025-11-09 23:56:21 +00:00
Fixed typo in QuerySet.bulk_update documentation (#10859)
Looks like an accidental carry over from the pre-existing QuerySet.bulk_create documentation.
This commit is contained in:
parent
06670015f7
commit
51fa59f0b3
1 changed files with 1 additions and 1 deletions
|
|
@ -2117,7 +2117,7 @@ them, but it has a few caveats:
|
||||||
* If ``objs`` contains duplicates, only the first one is updated.
|
* If ``objs`` contains duplicates, only the first one is updated.
|
||||||
|
|
||||||
The ``batch_size`` parameter controls how many objects are saved in a single
|
The ``batch_size`` parameter controls how many objects are saved in a single
|
||||||
query. The default is to create all objects in one batch, except for SQLite
|
query. The default is to update all objects in one batch, except for SQLite
|
||||||
and Oracle which have restrictions on the number of variables used in a query.
|
and Oracle which have restrictions on the number of variables used in a query.
|
||||||
|
|
||||||
``count()``
|
``count()``
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue