Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
fa2e1e63
Kaydet (Commit)
fa2e1e63
authored
Eki 02, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #15844 -- Added tests for multi-table inheritance related object filtering efficiency.
Fixed in
97774429
.
üst
41ed6338
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
tests.py
tests/model_inheritance_regress/tests.py
+19
-0
No files found.
tests/model_inheritance_regress/tests.py
Dosyayı görüntüle @
fa2e1e63
...
@@ -493,3 +493,22 @@ class ModelInheritanceTest(TestCase):
...
@@ -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
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment