Re: [sqlalchemy] Feedback appreciated on aggregated attributes implementation

2013-11-12 Thread Konsta Vesterinen
Thanks for quick and thorough feedback! I pretty much agree with everything you stated there :) I will change the code accordingly. -- 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,

[sqlalchemy] A noop query?

2013-11-12 Thread warvariuc
I have a model with a relationship: class Customer(Base): __tablename__ = 'customer' ... customer_wishes = relationship('CustomerWish', back_populates='customer', lazy='subquery') When I query a customer from the db: 15:32:00INFO [sqlalchemy.colorsql]: 0.005s SELECT *