[sqlalchemy] Re: question about `association_proxy` interface

2018-10-02 Thread Jonathan Vanasco
And a quick followup to Michael: I didn't want to pollute the comments in https://bitbucket.org/zzzeek/sqlalchemy/issues/3225/query-heuristic-inspection-system as there may not have been any substantial changes and I'm just reviewing my old notes wrong... How long do you think it is safe to

[sqlalchemy] question about `association_proxy` interface

2018-10-02 Thread Jonathan Vanasco
I have a common design in my database in which the heavy write/update columns exist in their own 'metacontent' table. An `association_proxy` is used to link them: class Item(Base): __tablename__ = 'item' id = Column(Integer, primary_key=True) item_description =