summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-22 04:31:19 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-22 04:31:19 +0000
commit9eada8ad62c18b93b306756f872256f4eddbf900 (patch)
tree86dca48d8900adcffecb38a6393831099384241a
parentd15809c3cd6a4dee45af556b4d3c883628068fe9 (diff)
Fixed #4357 -- Removed a type conversion that was only introduced in
MySQLdb-1.2.1 (and was introduced to Django in [5302]). git-svn-id: http://code.djangoproject.com/svn/django/trunk@5313 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/backends/mysql_old/base.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/mysql_old/base.py b/django/db/backends/mysql_old/base.py
index 4704fe80a5..ac3b75efde 100644
--- a/django/db/backends/mysql_old/base.py
+++ b/django/db/backends/mysql_old/base.py
@@ -25,7 +25,6 @@ django_conversions.update({
FIELD_TYPE.DATE: util.typecast_date,
FIELD_TYPE.TIME: util.typecast_time,
FIELD_TYPE.DECIMAL: util.typecast_decimal,
- FIELD_TYPE.NEWDECIMAL: util.typecast_decimal,
})
# This should match the numerical portion of the version numbers (we can treat