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
2d12a599
Kaydet (Commit)
2d12a599
authored
Kas 05, 2014
tarafından
Adam DePue
Kaydeden (comit)
Tim Graham
Kas 13, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
[1.7.x] Fixed #23761 -- Fixed crash with MySQL validator and db_type is None.
The issue was fixed on master in
e9103402
.
üst
d4bec655
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
validation.py
django/db/backends/mysql/validation.py
+4
-0
1.7.2.txt
docs/releases/1.7.2.txt
+4
-1
test_custom_fields.py
tests/invalid_models_tests/test_custom_fields.py
+20
-0
No files found.
django/db/backends/mysql/validation.py
Dosyayı görüntüle @
2d12a599
...
...
@@ -17,6 +17,10 @@ class DatabaseValidation(BaseDatabaseValidation):
if
getattr
(
field
,
'rel'
,
None
)
is
None
:
field_type
=
field
.
db_type
(
connection
)
# Ignore any non-concrete fields
if
field_type
is
None
:
return
errors
if
(
field_type
.
startswith
(
'varchar'
)
# Look for CharFields...
and
field
.
unique
# ... that are unique
and
(
field
.
max_length
is
None
or
int
(
field
.
max_length
)
>
255
)):
...
...
docs/releases/1.7.2.txt
Dosyayı görüntüle @
2d12a599
...
...
@@ -51,8 +51,11 @@ Bugfixes
(:ticket:`23420`).
* Fixed a migration serializing bug involving ``float("nan")`` and
``float("inf")`` (:ticket:
23770:
).
``float("inf")`` (:ticket:
`23770`
).
* Fixed a regression where custom form fields having a ``queryset`` attribute
but no ``limit_choices_to`` could not be used in a
:class:`~django.forms.ModelForm` (:ticket:`23795`).
* Fixed a custom field type validation error with MySQL backend when
``db_type`` returned ``None`` (:ticket:`23761`).
tests/invalid_models_tests/test_custom_fields.py
0 → 100644
Dosyayı görüntüle @
2d12a599
from
django.db
import
models
from
.base
import
IsolatedModelsTestCase
class
CustomFieldTest
(
IsolatedModelsTestCase
):
def
test_none_column
(
self
):
class
NoColumnField
(
models
.
AutoField
):
def
db_type
(
self
,
connection
):
# None indicates not to create a column in the database.
return
None
class
Model
(
models
.
Model
):
field
=
NoColumnField
(
primary_key
=
True
,
db_column
=
"other_field"
)
other_field
=
models
.
IntegerField
()
field
=
Model
.
_meta
.
get_field
(
'field'
)
errors
=
field
.
check
()
self
.
assertEqual
(
errors
,
[])
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