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
07577a2d
Kaydet (Commit)
07577a2d
authored
Tem 09, 2015
tarafından
Simon Charette
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25081 -- Prevented DISTINCT ON ordering from being cleared in get().
Thanks to pdewacht for the patch.
üst
7b6d3104
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
query.py
django/db/models/query.py
+1
-1
tests.py
tests/distinct_on_fields/tests.py
+8
-0
No files found.
django/db/models/query.py
Dosyayı görüntüle @
07577a2d
...
...
@@ -376,7 +376,7 @@ class QuerySet(object):
keyword arguments.
"""
clone
=
self
.
filter
(
*
args
,
**
kwargs
)
if
self
.
query
.
can_filter
():
if
self
.
query
.
can_filter
()
and
not
self
.
query
.
distinct_fields
:
clone
=
clone
.
order_by
()
num
=
len
(
clone
)
if
num
==
1
:
...
...
tests/distinct_on_fields/tests.py
Dosyayı görüntüle @
07577a2d
...
...
@@ -129,3 +129,11 @@ class DistinctOnTests(TestCase):
qs
,
[
self
.
p1_o2
,
self
.
p2_o1
,
self
.
p3_o1
],
lambda
x
:
x
)
def
test_distinct_on_get_ordering_preserved
(
self
):
"""
Ordering shouldn't be cleared when distinct on fields are specified.
refs #25081
"""
staff
=
Staff
.
objects
.
distinct
(
'name'
)
.
order_by
(
'name'
,
'-organisation'
)
.
get
(
name
=
'p1'
)
self
.
assertEqual
(
staff
.
organisation
,
'o2'
)
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