the "Integer" detection should probably detect the "Integer" ness of the
column, but for now you can just define the sequence explicitly:
Column('mycolumn', MyType, Sequence('mycolumn_id_seq'), primary_key=True)
[snip]
> > I expected sqlalchemy would treat a type created the way I did above
> > more or less like an integer, because of the impl attribute.
[snip]
> the "Integer" detection should probably detect the "Integer" ness of the
> column, but for now you can just define the sequence explicitly:
>
> Column('mycolumn', MyType, Sequence('mycolumn_id_seq'), primary_key=True)
Awesome, this solves my problem. thanks again.
-- kuno.