1
0
mirror of https://github.com/django/django.git synced 2025-10-29 08:36:09 +00:00

Made QuerySet.bulk_update() raise an error when batch_size is zero.

This commit is contained in:
Ebram Shehata
2022-06-13 06:25:25 +02:00
committed by GitHub
parent e96320c917
commit 4996eaa7b5
2 changed files with 3 additions and 1 deletions

View File

@@ -845,7 +845,7 @@ class QuerySet:
"""
Update the given fields in each of the given objects in the database.
"""
if batch_size is not None and batch_size < 0:
if batch_size is not None and batch_size <= 0:
raise ValueError("Batch size must be a positive integer.")
if not fields:
raise ValueError("Field names must be given to bulk_update().")