From 32b229fe2f50b424edbb756253c89cde6adb6474 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 19 Mar 2010 11:58:16 -0400 Subject: don't seem to need bind processing for pg8000 decimals. --- lib/sqlalchemy/dialects/postgresql/pg8000.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'lib/sqlalchemy/dialects/postgresql/pg8000.py') diff --git a/lib/sqlalchemy/dialects/postgresql/pg8000.py b/lib/sqlalchemy/dialects/postgresql/pg8000.py index 9824ab104..a620daac6 100644 --- a/lib/sqlalchemy/dialects/postgresql/pg8000.py +++ b/lib/sqlalchemy/dialects/postgresql/pg8000.py @@ -29,9 +29,6 @@ from sqlalchemy.dialects.postgresql.base import PGDialect, \ PGCompiler, PGIdentifierPreparer, PGExecutionContext class _PGNumeric(sqltypes.Numeric): - def bind_processor(self, dialect): - return processors.to_float - def result_processor(self, dialect, coltype): if self.asdecimal: if coltype in (700, 701): -- cgit v1.2.1