Added HSTORE to ischema_names in dialects/postgresql/base.py

This commit is contained in:
Ben Trofatter
2013-03-18 12:20:37 -07:00
parent 72c4bdf735
commit 33367fd1ee
@@ -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,
}