[sqlalchemy] Re: column_descriptions on recursive query : AttributeError: 'CTE' object has no attribute 'entity'

2015-04-30 Thread g
Hi The error appears if I do not specify the column name. e.g q = session.query(included_parts) print q.all() print q.column_descriptions included_parts = session.query( Part.sub_part, Part.part, Part.quantity).\

Re: [sqlalchemy] Re: column_descriptions on recursive query : AttributeError: 'CTE' object has no attribute 'entity'

2015-04-30 Thread Mike Bayer
On 4/30/15 4:02 AM, g wrote: Hi The error appears if I do not specify the column name. thanks very much! this issue was actually set to go out in 0.9.10 as well, but is now fixed. see https://bitbucket.org/zzzeek/sqlalchemy/issue/3403/0910-10-regression-re-column_descriptions e.g q