[sqlalchemy] Misleading warning for SqlAlchemy?

2014-09-11 Thread Victor Reichert
Hi, I'm using flask-sqlahcmey and I have a self referential relationship like this: class FileData(db.Model): id = db.Column(db.Integer, primary_key = True) primary_file_data_id = db.Column(db.Integer, ForeignKey('file_data.id')) is_edited_file = db.Column(db.Boolean, default =

Re: [sqlalchemy] Misleading warning for SqlAlchemy?

2014-09-11 Thread Michael Bayer
you can filter the warnings as ALWAYS for now, and the warning here should probably not come out if you've in fact given remote_side so please raise an issue for that. On Sep 11, 2014, at 2:38 AM, Victor Reichert vfr...@gmail.com wrote: Hi, I'm using flask-sqlahcmey and I have a self

Re: [sqlalchemy] Misleading warning for SqlAlchemy?

2014-09-11 Thread Michael Bayer
OK, I made https://bitbucket.org/zzzeek/sqlalchemy/issue/3194/misleading-warning-when-non-column and that is fixed with a small patch. On Sep 11, 2014, at 9:10 AM, Michael Bayer mike...@zzzcomputing.com wrote: you can filter the warnings as ALWAYS for now, and the warning here should

Re: [sqlalchemy] Misleading warning for SqlAlchemy?

2014-09-11 Thread Victor Reichert
Cool, thank you! On Thursday, September 11, 2014 8:52:45 AM UTC-7, Michael Bayer wrote: OK, I made https://bitbucket.org/zzzeek/sqlalchemy/issue/3194/misleading-warning-when-non-column and that is fixed with a small patch. On Sep 11, 2014, at 9:10 AM, Michael Bayer mik