Re: [sqlalchemy] Update clause with alias name

2016-07-05 Thread T Johnson
Thanks, the blog post was very helpful. ClauseAdapter provided exactly what was needed. -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to sqlalchemy+unsubscr...@goo

Re: [sqlalchemy] Update clause with alias name

2016-06-24 Thread Mike Bayer
On 06/24/2016 11:49 AM, T Johnson wrote: I'm using SQLAlchemy Core. A user prepares an "on" expression for a join query and passes it to a function. The goal of the function is to hide some messy details the must be done to perform the join. Part of these details include doing a subselect. So

[sqlalchemy] Update clause with alias name

2016-06-24 Thread T Johnson
I'm using SQLAlchemy Core. A user prepares an "on" expression for a join query and passes it to a function. The goal of the function is to hide some messy details the must be done to perform the join. Part of these details include doing a subselect. So in the implentation, the subselect is turne