diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py
|
a
|
b
|
|
| 565 | 565 | return value |
| 566 | 566 | return smart_unicode(value) |
| 567 | 567 | |
| | 568 | def get_prep_value(self, value): |
| | 569 | return self.to_python(value) |
| | 570 | |
| 568 | 571 | def formfield(self, **kwargs): |
| 569 | 572 | # Passing max_length to forms.CharField means that the value's length |
| 570 | 573 | # will be validated twice. This is considered acceptable since we want |
| … |
… |
|
| 1006 | 1009 | def get_internal_type(self): |
| 1007 | 1010 | return "TextField" |
| 1008 | 1011 | |
| | 1012 | def get_prep_value(self, value): |
| | 1013 | if isinstance(value, basestring) or value is None: |
| | 1014 | return value |
| | 1015 | return smart_unicode(value) |
| | 1016 | |
| 1009 | 1017 | def formfield(self, **kwargs): |
| 1010 | 1018 | defaults = {'widget': forms.Textarea} |
| 1011 | 1019 | defaults.update(kwargs) |
diff --git a/tests/regressiontests/model_fields/models.py b/tests/regressiontests/model_fields/models.py
|
a
|
b
|
|
| 55 | 55 | value = models.BigIntegerField() |
| 56 | 56 | null_value = models.BigIntegerField(null = True, blank = True) |
| 57 | 57 | |
| | 58 | class Post(models.Model): |
| | 59 | title = models.CharField(max_length=100) |
| | 60 | body = models.TextField() |
| | 61 | |
| 58 | 62 | ############################################################################### |
| 59 | 63 | # ImageField |
| 60 | 64 | |
diff --git a/tests/regressiontests/model_fields/tests.py b/tests/regressiontests/model_fields/tests.py
|
a
|
b
|
|
| 6 | 6 | from django.db import models |
| 7 | 7 | from django.core.exceptions import ValidationError |
| 8 | 8 | |
| 9 | | from models import Foo, Bar, Whiz, BigD, BigS, Image, BigInt |
| | 9 | from models import Foo, Bar, Whiz, BigD, BigS, Image, BigInt, Post |
| 10 | 10 | |
| 11 | 11 | try: |
| 12 | 12 | from decimal import Decimal |
| … |
… |
|
| 227 | 227 | b = BigInt.objects.get(value = '10') |
| 228 | 228 | self.assertEqual(b.value, 10) |
| 229 | 229 | |
| | 230 | class TypeCoercionTests(django.test.TestCase): |
| | 231 | """ |
| | 232 | Test that database lookups can accept the wrong types and convert |
| | 233 | them with no error: especially on Postgres 8.3+ which does not do |
| | 234 | automatic casting at the DB level. See #10015. |
| | 235 | |
| | 236 | """ |
| | 237 | def test_lookup_integer_in_charfield(self): |
| | 238 | self.assertEquals(Post.objects.filter(title=9).count(), 0) |
| | 239 | |
| | 240 | def test_lookup_integer_in_textfield(self): |
| | 241 | self.assertEquals(Post.objects.filter(body=24).count(), 0) |
| | 242 | |