Re: [sqlalchemy] Updating polymorphic parent from polymorphic child's event

2017-08-03 Thread Colton Allen
Worked perfectly. Thanks for the help. On Thursday, August 3, 2017 at 11:16:26 AM UTC-7, Mike Bayer wrote: > > On Thu, Aug 3, 2017 at 1:37 PM, Colton Allen > wrote: > > I've got an event that's trying to update another model with a foreign > key > > but it's raising a

Re: [sqlalchemy] Updating polymorphic parent from polymorphic child's event

2017-08-03 Thread Mike Bayer
On Thu, Aug 3, 2017 at 1:37 PM, Colton Allen wrote: > I've got an event that's trying to update another model with a foreign key > but it's raising a strange error that I'm having trouble debugging. > "AttributeError: 'Join' object has no attribute 'implicit_returning'". >

[sqlalchemy] Updating polymorphic parent from polymorphic child's event

2017-08-03 Thread Colton Allen
I've got an event that's trying to update another model with a foreign key but it's raising a strange error that I'm having trouble debugging. "AttributeError: 'Join' object has no attribute 'implicit_returning'". The query worked in the past (before the OutboundModel became polymorphic).