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
b971c1cd
Kaydet (Commit)
b971c1cd
authored
Eki 05, 2015
tarafından
Antoine Catton
Kaydeden (comit)
Tim Graham
Eki 14, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25506 -- Allowed filtering over a RawSQL annotation.
Co-Authored-By:
Gavin Wahl
<
gwahl@fusionbox.com
>
üst
c7aff313
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
lookups.py
django/db/models/lookups.py
+1
-1
1.8.6.txt
docs/releases/1.8.6.txt
+2
-0
tests.py
tests/expressions/tests.py
+12
-0
No files found.
django/db/models/lookups.py
Dosyayı görüntüle @
b971c1cd
...
...
@@ -151,7 +151,7 @@ class BuiltinLookup(Lookup):
lhs_sql
=
connection
.
ops
.
field_cast_sql
(
db_type
,
field_internal_type
)
%
lhs_sql
lhs_sql
=
connection
.
ops
.
lookup_cast
(
self
.
lookup_name
,
field_internal_type
)
%
lhs_sql
return
lhs_sql
,
params
return
lhs_sql
,
list
(
params
)
def
as_sql
(
self
,
compiler
,
connection
):
lhs_sql
,
params
=
self
.
process_lhs
(
compiler
,
connection
)
...
...
docs/releases/1.8.6.txt
Dosyayı görüntüle @
b971c1cd
...
...
@@ -17,3 +17,5 @@ Bugfixes
* Fixed system check crash on ``ForeignKey`` to abstract model
(:ticket:`25503`).
* Allowed filtering over a ``RawSQL`` annotation (:ticket:`25506`).
tests/expressions/tests.py
Dosyayı görüntüle @
b971c1cd
...
...
@@ -57,6 +57,18 @@ class BasicExpressionsTests(TestCase):
)
self
.
assertEqual
(
companies
[
'result'
],
2395
)
def
test_annotate_values_filter
(
self
):
companies
=
Company
.
objects
.
annotate
(
foo
=
RawSQL
(
'
%
s'
,
[
'value'
]),
)
.
filter
(
foo
=
'value'
)
.
order_by
(
'name'
)
self
.
assertQuerysetEqual
(
companies
,
[
'<Company: Example Inc.>'
,
'<Company: Foobar Ltd.>'
,
'<Company: Test GmbH>'
,
],
)
def
test_filter_inter_attribute
(
self
):
# We can filter on attribute relationships on same model obj, e.g.
# find companies where the number of employees is greater
...
...
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