From 9eada8ad62c18b93b306756f872256f4eddbf900 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 22 May 2007 04:31:19 +0000 Subject: [PATCH] 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 --- django/db/backends/mysql_old/base.py | 1 - 1 file changed, 1 deletion(-) 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