1
0
mirror of https://github.com/django/django.git synced 2025-10-28 16:16:12 +00:00

Fixed #35890 -- Fixed custom pre_save in fields from parents models not being called.

This commit is contained in:
Gagaro
2024-11-06 15:34:27 +01:00
parent c2c544cf01
commit a6687ed025
3 changed files with 10 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ from django.utils.functional import lazy
from .models import (
Author,
Book,
ComicBook,
DefaultPerson,
Journalist,
ManualPrimaryKeyTest,
@@ -579,12 +580,14 @@ class UpdateOrCreateTests(TestCase):
def test_update_only_defaults_and_pre_save_fields_when_local_fields(self):
publisher = Publisher.objects.create(name="Acme Publishing")
book = Book.objects.create(publisher=publisher, name="The Book of Ed & Fred")
book = ComicBook.objects.create(
publisher=publisher, name="The Book of Ed & Fred"
)
for defaults in [{"publisher": publisher}, {"publisher_id": publisher}]:
with self.subTest(defaults=defaults):
with CaptureQueriesContext(connection) as captured_queries:
book, created = Book.objects.update_or_create(
book, created = ComicBook.objects.update_or_create(
pk=book.pk,
defaults=defaults,
)