Is it possible to support dialect as option #202
-
We are generating our python code using sqlacodegen so far it works really well. But recently, we bump into an issue with only the Postgres dialect ARRAY support feature that could not be supported with sqlalchemy ARRAY. We have (generated from generator.py) We need Is it possible to specify a flag for generating the postgresql dialect? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Quoting from
@agronholm seems like we can just replace |
Beta Was this translation helpful? Give feedback.
Quoting from
sqlalchemy.ARRAY
official documentation@agronholm seems like we can just replace
from sqlalchemy import ARRAY
withfrom sqlalchemy.dialects.postgresql import ARRAY