diff options
author | Ben Trofatter <trofatter@google.com> | 2013-03-18 12:20:37 -0700 |
---|---|---|
committer | Ben Trofatter <trofatter@google.com> | 2013-03-18 12:20:37 -0700 |
commit | 33367fd1ee492fecb279e5b7a2219f236f8027ea (patch) | |
tree | 9a0649c1c0996fd7c31aacd40a5f84940f900410 /lib/sqlalchemy/dialects/postgresql/base.py | |
parent | 72c4bdf735d8d81b6ff182d7cc15bbfe56078d12 (diff) | |
download | sqlalchemy-33367fd1ee492fecb279e5b7a2219f236f8027ea.tar.gz |
Added HSTORE to ischema_names in dialects/postgresql/base.py
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index c59caff8d..0d40c87f4 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -195,6 +195,7 @@ from ... import sql, schema, exc, util from ...engine import default, reflection from ...sql import compiler, expression, util as sql_util, operators from ... import types as sqltypes +from .hstore import HSTORE try: from uuid import UUID as _python_UUID @@ -893,6 +894,7 @@ ischema_names = { 'interval': INTERVAL, 'interval year to month': INTERVAL, 'interval day to second': INTERVAL, + 'hstore': HSTORE, } |