I'm getting the error:
sqlalchemy.exc.ArgumentError: Column type DECIMAL(38, 0) on column 'id' is not compatible with autoincrement=True
When using the official example on the Snowflake website (https://docs.snowflake.net/manuals/user-guide/sqlalchemy.html#auto-increment-behavior):
Column('id', Integer, Sequence('id_seq'), primary_key=True)
Any idea what the correct way is?