[sqlalchemy] merge, cascade and uselist=False

2009-12-13 Thread avdd
Hi I'm trying to merge objects across sessions and I'm seeing some odd behavour with a one-one child relation: import sqlalchemy as sql import sqlalchemy.orm as orm from sqlalchemy.ext.declarative import declarative_base engine = sql.create_engine('sqlite:///:memory:') metadata =

Re: [sqlalchemy] merge, cascade and uselist=False

2009-12-13 Thread Michael Bayer
On Dec 13, 2009, at 8:07 PM, avdd wrote: that is, when uselist=False, setting the attribute to None does not persist across the merge. confirmed. this is fixed in r6553 trunk/0.6 / r6554 0.5 branch. -- You received this message because you are subscribed to the Google Groups sqlalchemy