summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/psycopg2.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-04-28 16:27:23 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-04-28 16:27:23 -0400
commit734376130f01d17acc0d6c2d34c1e0f94a1cd1da (patch)
treea362ebea6de09e3a138b27052fec856bf9304064 /lib/sqlalchemy/dialects/postgresql/psycopg2.py
parent1321088644c8d845e6e8d96f24c5f841c3bc9e28 (diff)
downloadsqlalchemy-734376130f01d17acc0d6c2d34c1e0f94a1cd1da.tar.gz
postgresql dialect tests
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/psycopg2.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/psycopg2.py27
1 files changed, 13 insertions, 14 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
index 2893a3872..ce06aab05 100644
--- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py
+++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
@@ -142,6 +142,7 @@ type. This replaces SQLAlchemy's pure-Python HSTORE coercion which takes
effect for other DBAPIs.
"""
+from __future__ import absolute_import
import re
import logging
@@ -190,22 +191,20 @@ class _PGNumeric(sqltypes.Numeric):
class _PGEnum(ENUM):
def __init__(self, *arg, **kw):
super(_PGEnum, self).__init__(*arg, **kw)
-# start Py2K
-# if self.convert_unicode:
-# self.convert_unicode = "force"
-# end Py2K
+ if util.py2k:
+ if self.convert_unicode:
+ self.convert_unicode = "force"
class _PGArray(ARRAY):
def __init__(self, *arg, **kw):
super(_PGArray, self).__init__(*arg, **kw)
-# start Py2K
-# # FIXME: this check won't work for setups that
-# # have convert_unicode only on their create_engine().
-# if isinstance(self.item_type, sqltypes.String) and \
-# self.item_type.convert_unicode:
-# self.item_type.convert_unicode = "force"
-# end Py2K
+ if util.py2k:
+ # FIXME: this check won't work for setups that
+ # have convert_unicode only on their create_engine().
+ if isinstance(self.item_type, sqltypes.String) and \
+ self.item_type.convert_unicode:
+ self.item_type.convert_unicode = "force"
class _PGHStore(HSTORE):
@@ -294,9 +293,9 @@ class PGIdentifierPreparer_psycopg2(PGIdentifierPreparer):
class PGDialect_psycopg2(PGDialect):
driver = 'psycopg2'
-# start Py2K
-# supports_unicode_statements = False
-# end Py2K
+ if util.py2k:
+ supports_unicode_statements = False
+
default_paramstyle = 'pyformat'
supports_sane_multi_rowcount = False
execution_ctx_cls = PGExecutionContext_psycopg2