mirror of
https://github.com/django/django.git
synced 2025-09-01 06:39:12 +00:00
Refs #15844 -- Added tests for multi-table inheritance related object filtering efficiency.
Fixed in 97774429aeb54df4c09895c07cd1b09e70201f7d.
This commit is contained in:
parent
41ed6338a4
commit
fa2e1e633a
@ -493,3 +493,22 @@ class ModelInheritanceTest(TestCase):
|
|||||||
|
|
||||||
jane = Supplier.objects.order_by("name").select_related("restaurant")[0]
|
jane = Supplier.objects.order_by("name").select_related("restaurant")[0]
|
||||||
self.assertEqual(jane.restaurant.name, "Craft")
|
self.assertEqual(jane.restaurant.name, "Craft")
|
||||||
|
|
||||||
|
def test_related_filtering_query_efficiency_ticket_15844(self):
|
||||||
|
r = Restaurant.objects.create(
|
||||||
|
name="Guido's House of Pasta",
|
||||||
|
address='944 W. Fullerton',
|
||||||
|
serves_hot_dogs=True,
|
||||||
|
serves_pizza=False,
|
||||||
|
)
|
||||||
|
s = Supplier.objects.create(restaurant=r)
|
||||||
|
with self.assertNumQueries(1):
|
||||||
|
self.assertQuerysetEqual(
|
||||||
|
Supplier.objects.filter(restaurant=r),
|
||||||
|
[s], lambda x: x,
|
||||||
|
)
|
||||||
|
with self.assertNumQueries(1):
|
||||||
|
self.assertQuerysetEqual(
|
||||||
|
r.supplier_set.all(),
|
||||||
|
[s], lambda x: x,
|
||||||
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user