Re: [sqlalchemy] ColumnCollection.add of Function objects

2012-04-21 Thread Michael Bayer
On Apr 21, 2012, at 12:39 AM, poogie wrote: > Hello, > > I am upgrading a system from sqlalchemy 0.5.3 to sqlalchemy 0.7.3. I a > seeing breakage when adding an instance of sql.functions.sum( Column ) > to a ColumnCollection. that's an unusual use case. ColumnCollection as of yet was only int

[sqlalchemy] ColumnCollection.add of Function objects

2012-04-21 Thread poogie
Hello, I am upgrading a system from sqlalchemy 0.5.3 to sqlalchemy 0.7.3. I a seeing breakage when adding an instance of sql.functions.sum( Column ) to a ColumnCollection. Here is the add method from the 0.7.3 version: def add(self, column): """Add a column to this collection.