MonetDB / sqlalchemy-monetdb

A SQLAlchemy dialect for MonetDB
MIT License
41 stars 17 forks source link

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

Open MitchellWeg opened 2 years ago

MitchellWeg commented 2 years ago

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