Re: [sqlalchemy] Deferred column getting unintentionally deferred

2017-09-20 Thread Neena Parikh
Great, thanks for the follow-up! We've found a workaround using inspect(item).expired_attributes.clear() after calling through to make_transient_to_detached(item). Best, Neena On Tuesday, September 19, 2017 at 1:38:19 PM UTC-7, Mike Bayer wrote: > > On Tue, Sep 19, 2017 at 1:16 PM, Neena Parik

Re: [sqlalchemy] Deferred column getting unintentionally deferred

2017-09-19 Thread Mike Bayer
On Tue, Sep 19, 2017 at 1:16 PM, Neena Parikh wrote: > Hi there, > > After implementing the solutions for raising on column usages brought up at > https://groups.google.com/forum/#!topic/sqlalchemy/Lbyq8Co95mQ, I've come > across an issue where a deferred column is being loaded by default after a

[sqlalchemy] Deferred column getting unintentionally deferred

2017-09-19 Thread Neena Parikh
Hi there, After implementing the solutions for raising on column usages brought up at https://groups.google.com/forum/#!topic/sqlalchemy/Lbyq8Co95mQ, I've come across an issue where a deferred column is being loaded by default after a series of function calls. Here's the minimal repro I could f