]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Added HSTORE to ischema_names in dialects/postgresql/base.py
authorBen Trofatter <trofatter@google.com>
Mon, 18 Mar 2013 19:20:37 +0000 (12:20 -0700)
committerBen Trofatter <trofatter@google.com>
Mon, 18 Mar 2013 19:20:37 +0000 (12:20 -0700)
lib/sqlalchemy/dialects/postgresql/base.py

index c59caff8d25cc5c5707d39225c23ed080b9feba9..0d40c87f4031a1789dd7ffc4401d046d9ba0cbe9 100644 (file)
@@ -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,
 }