summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-11-17 20:45:17 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-11-17 20:45:17 -0500
commit4356741c485b397137d4591474fd90bcdf933ec3 (patch)
treee2d44af23e5a5e348dc036721ed641894e89dfaa /lib/sqlalchemy/dialects/postgresql/base.py
parent6369292dcf62561d23c084b3da5ca35c309af552 (diff)
downloadsqlalchemy-4356741c485b397137d4591474fd90bcdf933ec3.tar.gz
- hstore adjustments
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index 625ece6a1..f1061c90b 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -968,6 +968,9 @@ class PGTypeCompiler(compiler.GenericTypeCompiler):
def visit_BIGINT(self, type_):
return "BIGINT"
+ def visit_HSTORE(self, type_):
+ return "HSTORE"
+
def visit_datetime(self, type_):
return self.visit_TIMESTAMP(type_)