[sqlalchemy] Re: RuntimeWarning with overriden reflected table

2007-10-10 Thread Michael Bayer
On Oct 10, 2007, at 10:01 AM, Eric Lemoine wrote: Hi I use a reflected table with an overriden column: summits_table = Table('sommets_out', MetaData(config['pylons.g'].sa_search_engine), Column('geom', Geometry), autoload=True) and I get

[sqlalchemy] Re: RuntimeWarning with overriden reflected table

2007-10-10 Thread Eric Lemoine
On 10/10/07, Michael Bayer [EMAIL PROTECTED] wrote: On Oct 10, 2007, at 10:01 AM, Eric Lemoine wrote: Hi I use a reflected table with an overriden column: summits_table = Table('sommets_out', MetaData(config['pylons.g'].sa_search_engine), Column('geom',

[sqlalchemy] Re: RuntimeWarning with overriden reflected table

2007-10-10 Thread Michael Bayer
On Oct 10, 2007, at 2:45 PM, Eric Lemoine wrote: Thanks for your answer. So basically you're saying that this RuntimeWarning is harmless, aren't you? yeah, its a warning and not an error since its not necessarily anything wrong. Are you suggesting that I should add Geometry to