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
f53059b4
Kaydet (Commit)
f53059b4
authored
May 20, 2013
tarafından
Anssi Kääriäinen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed qs.values() regression when used in subquery
üst
a9367262
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletion
+23
-1
where.py
django/db/models/sql/where.py
+6
-1
tests.py
tests/queries/tests.py
+17
-0
No files found.
django/db/models/sql/where.py
Dosyayı görüntüle @
f53059b4
...
...
@@ -399,7 +399,12 @@ class SubqueryConstraint(object):
if
hasattr
(
query
,
'values'
):
if
query
.
_db
and
connection
.
alias
!=
query
.
_db
:
raise
ValueError
(
"Can't do subqueries with queries on different DBs."
)
query
=
query
.
values
(
*
self
.
targets
)
.
query
# Do not override already existing values.
if
not
hasattr
(
query
,
'field_names'
):
query
=
query
.
values
(
*
self
.
targets
)
else
:
query
=
query
.
_clone
()
query
=
query
.
query
query
.
clear_ordering
(
True
)
query_compiler
=
query
.
get_compiler
(
connection
=
connection
)
...
...
tests/queries/tests.py
Dosyayı görüntüle @
f53059b4
...
...
@@ -2831,3 +2831,20 @@ class EmptyStringPromotionTests(TestCase):
self
.
assertIn
(
'LEFT OUTER JOIN'
,
str
(
qs
.
query
))
else
:
self
.
assertNotIn
(
'LEFT OUTER JOIN'
,
str
(
qs
.
query
))
class
ValuesSubqueryTests
(
TestCase
):
def
test_values_in_subquery
(
self
):
# Check that if a values() queryset is used, then the given values
# will be used instead of forcing use of the relation's field.
o1
=
Order
.
objects
.
create
(
id
=-
2
)
o2
=
Order
.
objects
.
create
(
id
=-
1
)
oi1
=
OrderItem
.
objects
.
create
(
order
=
o1
,
status
=
0
)
oi1
.
status
=
oi1
.
pk
oi1
.
save
()
OrderItem
.
objects
.
create
(
order
=
o2
,
status
=
0
)
# The query below should match o1 as it has related order_item
# with id == status.
self
.
assertQuerysetEqual
(
Order
.
objects
.
filter
(
items__in
=
OrderItem
.
objects
.
values_list
(
'status'
)),
[
o1
.
pk
],
lambda
x
:
x
.
pk
)
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