From 33367fd1ee492fecb279e5b7a2219f236f8027ea Mon Sep 17 00:00:00 2001 From: Ben Trofatter Date: Mon, 18 Mar 2013 12:20:37 -0700 Subject: [PATCH] Added HSTORE to ischema_names in dialects/postgresql/base.py --- lib/sqlalchemy/dialects/postgresql/base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index c59caff8d2..0d40c87f40 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, } -- 2.47.2