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
910638fc
Kaydet (Commit)
910638fc
authored
Nis 14, 2015
tarafından
Edward Henderson
Kaydeden (comit)
Tim Graham
Nis 14, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #24385 -- Added tests for distinct sum issue fixed in
c7fd9b24
üst
d72e0178
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
tests.py
tests/aggregation/tests.py
+14
-0
No files found.
tests/aggregation/tests.py
Dosyayı görüntüle @
910638fc
...
...
@@ -441,6 +441,20 @@ class AggregateTestCase(TestCase):
vals
=
Book
.
objects
.
annotate
(
num_authors
=
Count
(
"authors__id"
))
.
aggregate
(
Avg
(
"num_authors"
))
self
.
assertEqual
(
vals
,
{
"num_authors__avg"
:
Approximate
(
1.66
,
places
=
1
)})
def
test_sum_distinct_aggregate
(
self
):
"""
Sum on a distict() QuerySet should aggregate only the distinct items.
"""
authors
=
Author
.
objects
.
filter
(
book__in
=
[
5
,
6
])
self
.
assertEqual
(
authors
.
count
(),
3
)
distinct_authors
=
authors
.
distinct
()
self
.
assertEqual
(
distinct_authors
.
count
(),
2
)
# Selected author ages are 57 and 46
age_sum
=
distinct_authors
.
aggregate
(
Sum
(
'age'
))
self
.
assertEqual
(
age_sum
[
'age__sum'
],
103
)
def
test_filtering
(
self
):
p
=
Publisher
.
objects
.
create
(
name
=
'Expensive Publisher'
,
num_awards
=
0
)
Book
.
objects
.
create
(
...
...
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