mirror of
https://github.com/django/django.git
synced 2025-08-30 23:37:50 +00:00
Fixed #28166 -- Fixed Model._state.db on MTI parent model after saving child model.
Regression in 38575b007a
.
This commit is contained in:
parent
362fba87c9
commit
584e10c76e
3 changed files with 11 additions and 1 deletions
|
@ -472,6 +472,10 @@ class ModelInheritanceTest(TestCase):
|
|||
jane = Supplier.objects.order_by("name").select_related("restaurant")[0]
|
||||
self.assertEqual(jane.restaurant.name, "Craft")
|
||||
|
||||
def test_ptr_accessor_assigns_db(self):
|
||||
r = Restaurant.objects.create()
|
||||
self.assertEqual(r.place_ptr._state.db, 'default')
|
||||
|
||||
def test_related_filtering_query_efficiency_ticket_15844(self):
|
||||
r = Restaurant.objects.create(
|
||||
name="Guido's House of Pasta",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue