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
dec93d89
Kaydet (Commit)
dec93d89
authored
Kas 15, 2014
tarafından
Karen Tracey
Kaydeden (comit)
Tim Graham
Kas 16, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #21612 -- Made QuerySet.update() respect to_field
üst
de912495
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
3 deletions
+24
-3
base.py
django/db/models/base.py
+2
-2
models.py
tests/update/models.py
+8
-0
tests.py
tests/update/tests.py
+14
-1
No files found.
django/db/models/base.py
Dosyayı görüntüle @
dec93d89
...
...
@@ -826,10 +826,10 @@ class Model(six.with_metaclass(ModelBase)):
setattr
(
self
,
cachename
,
obj
)
return
getattr
(
self
,
cachename
)
def
prepare_database_save
(
self
,
unuse
d
):
def
prepare_database_save
(
self
,
fiel
d
):
if
self
.
pk
is
None
:
raise
ValueError
(
"Unsaved model instance
%
r cannot be used in an ORM query."
%
self
)
return
self
.
pk
return
getattr
(
self
,
field
.
rel
.
field_name
)
def
clean
(
self
):
"""
...
...
tests/update/models.py
Dosyayı görüntüle @
dec93d89
...
...
@@ -42,3 +42,11 @@ class C(models.Model):
class
D
(
C
):
a
=
models
.
ForeignKey
(
A
)
class
Foo
(
models
.
Model
):
target
=
models
.
CharField
(
max_length
=
10
,
unique
=
True
)
class
Bar
(
models
.
Model
):
foo
=
models
.
ForeignKey
(
Foo
,
to_field
=
'target'
)
tests/update/tests.py
Dosyayı görüntüle @
dec93d89
...
...
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
from
django.test
import
TestCase
from
.models
import
A
,
B
,
D
,
DataPoint
,
RelatedPoint
from
.models
import
A
,
B
,
D
,
DataPoint
,
RelatedPoint
,
Foo
,
Bar
class
SimpleTest
(
TestCase
):
...
...
@@ -125,3 +125,16 @@ class AdvancedTests(TestCase):
method
=
DataPoint
.
objects
.
all
()[:
2
]
.
update
self
.
assertRaises
(
AssertionError
,
method
,
another_value
=
'another thing'
)
def
test_update_respects_to_field
(
self
):
"""
Update of an FK field which specifies a to_field works.
"""
a_foo
=
Foo
.
objects
.
create
(
target
=
'aaa'
)
b_foo
=
Foo
.
objects
.
create
(
target
=
'bbb'
)
bar
=
Bar
.
objects
.
create
(
foo
=
a_foo
)
self
.
assertEqual
(
bar
.
foo_id
,
a_foo
.
target
)
bar_qs
=
Bar
.
objects
.
filter
(
pk
=
bar
.
pk
)
self
.
assertEqual
(
bar_qs
[
0
]
.
foo_id
,
a_foo
.
target
)
bar_qs
.
update
(
foo
=
b_foo
)
self
.
assertEqual
(
bar_qs
[
0
]
.
foo_id
,
b_foo
.
target
)
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