Made QuerySet.bulk_update() raise an error when batch_size is zero.
This commit is contained in:
parent
e96320c917
commit
4996eaa7b5
|
@ -845,7 +845,7 @@ class QuerySet:
|
||||||
"""
|
"""
|
||||||
Update the given fields in each of the given objects in the database.
|
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.")
|
raise ValueError("Batch size must be a positive integer.")
|
||||||
if not fields:
|
if not fields:
|
||||||
raise ValueError("Field names must be given to bulk_update().")
|
raise ValueError("Field names must be given to bulk_update().")
|
||||||
|
|
|
@ -125,6 +125,8 @@ class BulkUpdateTests(TestCase):
|
||||||
msg = "Batch size must be a positive integer."
|
msg = "Batch size must be a positive integer."
|
||||||
with self.assertRaisesMessage(ValueError, msg):
|
with self.assertRaisesMessage(ValueError, msg):
|
||||||
Note.objects.bulk_update([], fields=["note"], batch_size=-1)
|
Note.objects.bulk_update([], fields=["note"], batch_size=-1)
|
||||||
|
with self.assertRaisesMessage(ValueError, msg):
|
||||||
|
Note.objects.bulk_update([], fields=["note"], batch_size=0)
|
||||||
|
|
||||||
def test_nonexistent_field(self):
|
def test_nonexistent_field(self):
|
||||||
with self.assertRaisesMessage(
|
with self.assertRaisesMessage(
|
||||||
|
|
Loading…
Reference in New Issue