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
c21e86ab
Kaydet (Commit)
c21e86ab
authored
Haz 18, 2013
tarafından
Anssi Kääriäinen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added field.attname to Options.name_map
The change also removed allow_explicit_fk from sql/query.py.
üst
31e6d58d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
25 deletions
+14
-25
options.py
django/db/models/options.py
+4
-3
query.py
django/db/models/sql/query.py
+8
-21
tests.py
tests/lookup/tests.py
+2
-1
No files found.
django/db/models/options.py
Dosyayı görüntüle @
c21e86ab
...
...
@@ -404,12 +404,13 @@ class Options(object):
for
f
,
model
in
self
.
get_all_related_objects_with_model
():
cache
[
f
.
field
.
related_query_name
()]
=
(
f
,
model
,
False
,
False
)
for
f
,
model
in
self
.
get_m2m_with_model
():
cache
[
f
.
name
]
=
(
f
,
model
,
True
,
True
)
cache
[
f
.
name
]
=
cache
[
f
.
attname
]
=
(
f
,
model
,
True
,
True
)
for
f
,
model
in
self
.
get_fields_with_model
():
cache
[
f
.
name
]
=
(
f
,
model
,
True
,
False
)
cache
[
f
.
name
]
=
cache
[
f
.
attname
]
=
(
f
,
model
,
True
,
False
)
for
f
in
self
.
virtual_fields
:
if
hasattr
(
f
,
'related'
):
cache
[
f
.
name
]
=
(
f
.
related
,
None
if
f
.
model
==
self
.
model
else
f
.
model
,
True
,
False
)
cache
[
f
.
name
]
=
cache
[
f
.
attname
]
=
(
f
.
related
,
None
if
f
.
model
==
self
.
model
else
f
.
model
,
True
,
False
)
if
app_cache_ready
():
self
.
_name_map
=
cache
return
cache
...
...
django/db/models/sql/query.py
Dosyayı görüntüle @
c21e86ab
...
...
@@ -1091,8 +1091,7 @@ class Query(object):
try
:
field
,
sources
,
opts
,
join_list
,
path
=
self
.
setup_joins
(
parts
,
opts
,
alias
,
can_reuse
,
allow_many
,
allow_explicit_fk
=
True
)
parts
,
opts
,
alias
,
can_reuse
,
allow_many
,)
if
can_reuse
is
not
None
:
can_reuse
.
update
(
join_list
)
except
MultiJoin
as
e
:
...
...
@@ -1237,15 +1236,14 @@ class Query(object):
len
(
q_object
.
children
))
return
target_clause
def
names_to_path
(
self
,
names
,
opts
,
allow_many
,
allow_explicit_fk
):
def
names_to_path
(
self
,
names
,
opts
,
allow_many
):
"""
Walks the names path and turns them PathInfo tuples. Note that a
single name in 'names' can generate multiple PathInfos (m2m for
example).
'names' is the path of names to travle, 'opts' is the model Options we
start the name resolving from, 'allow_many' and 'allow_explicit_fk'
are as for setup_joins().
start the name resolving from, 'allow_many' is as for setup_joins().
Returns a list of PathInfo tuples. In addition returns the final field
(the last used join field), and target (which is a field guaranteed to
...
...
@@ -1258,17 +1256,9 @@ class Query(object):
try
:
field
,
model
,
direct
,
m2m
=
opts
.
get_field_by_name
(
name
)
except
FieldDoesNotExist
:
for
f
in
opts
.
fields
:
if
allow_explicit_fk
and
name
==
f
.
attname
:
# XXX: A hack to allow foo_id to work in values() for
# backwards compatibility purposes. If we dropped that
# feature, this could be removed.
field
,
model
,
direct
,
m2m
=
opts
.
get_field_by_name
(
f
.
name
)
break
else
:
available
=
opts
.
get_all_field_names
()
+
list
(
self
.
aggregate_select
)
raise
FieldError
(
"Cannot resolve keyword
%
r into field. "
"Choices are:
%
s"
%
(
name
,
", "
.
join
(
available
)))
available
=
opts
.
get_all_field_names
()
+
list
(
self
.
aggregate_select
)
raise
FieldError
(
"Cannot resolve keyword
%
r into field. "
"Choices are:
%
s"
%
(
name
,
", "
.
join
(
available
)))
# Check if we need any joins for concrete inheritance cases (the
# field lives in parent, but we are currently in one of its
# children)
...
...
@@ -1314,7 +1304,7 @@ class Query(object):
return
path
,
final_field
,
targets
def
setup_joins
(
self
,
names
,
opts
,
alias
,
can_reuse
=
None
,
allow_many
=
True
,
allow_explicit_fk
=
False
,
outer_if_first
=
False
):
outer_if_first
=
False
):
"""
Compute the necessary table joins for the passage through the fields
given in 'names'. 'opts' is the Options class for the current model
...
...
@@ -1329,9 +1319,6 @@ class Query(object):
If 'allow_many' is False, then any reverse foreign key seen will
generate a MultiJoin exception.
The 'allow_explicit_fk' controls if field.attname is allowed in the
lookups.
Returns the final field involved in the joins, the target field (used
for any 'where' constraint), the final 'opts' value, the joins and the
field path travelled to generate the joins.
...
...
@@ -1345,7 +1332,7 @@ class Query(object):
joins
=
[
alias
]
# First, generate the path for the names
path
,
final_field
,
targets
=
self
.
names_to_path
(
names
,
opts
,
allow_many
,
allow_explicit_fk
)
names
,
opts
,
allow_many
)
# Then, add the path to the query's joins. Note that we can't trim
# joins at this stage - we will need the information about join type
# of the trimmed joins.
...
...
tests/lookup/tests.py
Dosyayı görüntüle @
c21e86ab
...
...
@@ -470,7 +470,8 @@ class LookupTests(TestCase):
self
.
fail
(
'FieldError not raised'
)
except
FieldError
as
ex
:
self
.
assertEqual
(
str
(
ex
),
"Cannot resolve keyword 'pub_date_year' "
"into field. Choices are: author, headline, id, pub_date, tag"
)
"into field. Choices are: author, author_id, headline, "
"id, pub_date, tag"
)
try
:
Article
.
objects
.
filter
(
headline__starts
=
'Article'
)
self
.
fail
(
'FieldError not raised'
)
...
...
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