From ceea86baa36b91d0002911770340a2d7bd4f64b7 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Sat, 4 May 2024 17:11:07 -0400 Subject: Fixed #35425 -- Avoided INSERT with force_update and explicit pk. Affected models where the primary key field is defined with a default or db_default, such as UUIDField. --- tests/basic/tests.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/basic') diff --git a/tests/basic/tests.py b/tests/basic/tests.py index bda59d82fa..38fb9ca200 100644 --- a/tests/basic/tests.py +++ b/tests/basic/tests.py @@ -186,6 +186,12 @@ class ModelInstanceCreationTests(TestCase): with self.assertNumQueries(1): PrimaryKeyWithDefault().save() + def test_save_primary_with_default_force_update(self): + # An UPDATE attempt is made if explicitly requested. + obj = PrimaryKeyWithDefault.objects.create() + with self.assertNumQueries(1): + PrimaryKeyWithDefault(uuid=obj.pk).save(force_update=True) + def test_save_primary_with_db_default(self): # An UPDATE attempt is skipped when a primary key has db_default. with self.assertNumQueries(1): -- cgit v1.3