我有一个模型使用添加到SQLAlchemy 0.8的新PostgreSQL HSTORE支持:
class Gateway(Base):
__tablename__ = 'gateway'
id = Column(Integer, primary_key=True)
access = Column(Mutable.as_mutable(HSTORE), nullable=False, unique=True)
但是当我运行session.query(Gateway).all()
时,会引发以下异常:
ValueError: Attribute 'access' does not accept objects of type <type 'dict'>
你能帮我解决这个问题吗?