[sqlalchemy] Re: Alembic 0.6.0 released

2013-07-20 Thread David Szotten
south currently uses state freezing (which aways felt messy), but i believe the new rewrite for inclusion in django core is moving to a way of describing schema changes in a declarative way that can be introspected (so current state is calculated from all previous migrations instead of some fro

Re: [sqlalchemy] after_bulk_update table/column info?

2013-07-07 Thread David Szotten
_update") > def bulk_ud(sess, query, ctx, result): > print result.context.compiled.params > > > > > > On Jul 7, 2013, at 5:51 AM, David Szotten wrote: > > Hi, > > Is it possible to find out which class/columns were included in the update > from an

[sqlalchemy] after_bulk_update table/column info?

2013-07-07 Thread David Szotten
Hi, Is it possible to find out which class/columns were included in the update from an `after_bulk_update` event handler? >From what i can tell from the source, this information lives on the `BulkUpdate(Evaluate in my case)` object which isn't passed to the event handler, and I can't figure ou