]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- in depth docs about some merge() tips
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 22 Sep 2010 18:22:16 +0000 (14:22 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 22 Sep 2010 18:22:16 +0000 (14:22 -0400)
commiteae4de02a9b9bcf070a12607ada4098fb63e26f2
treecbd9765b89832506b29d06454bcc4ce586d78f3e
parent7b8b23b42700598adf2ee79083aa13dbca5e75e7
- in depth docs about some merge() tips
- docs about backref cascade
- Another new flag on relationship(), cascade_backrefs,
disables the "save-update" cascade when the event was
initiated on the "reverse" side of a bidirectional
relationship.   This is a cleaner behavior so that
many-to-ones can be set on a transient object without
it getting sucked into the child object's session,
while still allowing the forward collection to
cascade.   We *might* default this to False in 0.7.
CHANGES
doc/build/orm/session.rst
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/session.py
lib/sqlalchemy/orm/unitofwork.py
test/orm/inheritance/test_magazine.py
test/orm/test_cascade.py