summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/pg8000.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-03-19 11:58:16 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-03-19 11:58:16 -0400
commit32b229fe2f50b424edbb756253c89cde6adb6474 (patch)
tree386cfba79817c4b8e9f24382fb02de404a221367 /lib/sqlalchemy/dialects/postgresql/pg8000.py
parent32f8a11153b4c15391e9650498ebf2f0626f063c (diff)
downloadsqlalchemy-32b229fe2f50b424edbb756253c89cde6adb6474.tar.gz
don't seem to need bind processing for pg8000 decimals.
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/pg8000.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/pg8000.py3
1 files changed, 0 insertions, 3 deletions
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):