sqlalchemy-monetdb icon indicating copy to clipboard operation
sqlalchemy-monetdb copied to clipboard

AttributeError: 'MonetTypeCompiler' object has no attribute 'visit_JSON'

Open MitchellWeg opened this issue 3 years ago • 0 comments

We currently don't have support for the JSON column type.

class Job(Base):
    __tablename__ = 'job'
    job_id = Column(Integer, primary_key=True)
    key = Column(String)
    value = Column(JSON)

produces the following error:

AttributeError: 'MonetTypeCompiler' object has no attribute 'visit_JSON

MitchellWeg avatar Mar 31 '22 12:03 MitchellWeg