diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-06-20 18:53:33 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-06-20 18:53:33 +0000 |
commit | 33648e71763d415bf17ea94e4066ea0adccca11a (patch) | |
tree | 7b5b9dfa6f291a0325a535e10d1f490c8ac65e2a /lib | |
parent | 2e72d7e15ff6565d105659a34da5b03691513f4b (diff) | |
download | sqlalchemy-33648e71763d415bf17ea94e4066ea0adccca11a.tar.gz |
- fixed very stupid bug when deleting items with many-to-many
uselist=False relations
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sqlalchemy/orm/dependency.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/dependency.py b/lib/sqlalchemy/orm/dependency.py index 0c0dacd20..54b043b32 100644 --- a/lib/sqlalchemy/orm/dependency.py +++ b/lib/sqlalchemy/orm/dependency.py @@ -338,7 +338,7 @@ class ManyToManyDP(DependencyProcessor): childlist = self.get_object_dependencies(obj, uowcommit, passive=self.passive_deletes) if childlist is not None: for child in childlist.deleted_items() + childlist.unchanged_items(): - if reverse_dep and (reverse_dep, "manytomany", child, obj) in uowcommit.attributes: + if child is None or (reverse_dep and (reverse_dep, "manytomany", child, obj) in uowcommit.attributes): continue associationrow = {} self._synchronize(obj, child, associationrow, False, uowcommit) @@ -349,14 +349,14 @@ class ManyToManyDP(DependencyProcessor): childlist = self.get_object_dependencies(obj, uowcommit) if childlist is None: continue for child in childlist.added_items(): - if reverse_dep and (reverse_dep, "manytomany", child, obj) in uowcommit.attributes: + if child is None or (reverse_dep and (reverse_dep, "manytomany", child, obj) in uowcommit.attributes): continue associationrow = {} self._synchronize(obj, child, associationrow, False, uowcommit) uowcommit.attributes[(self, "manytomany", obj, child)] = True secondary_insert.append(associationrow) for child in childlist.deleted_items(): - if reverse_dep and (reverse_dep, "manytomany", child, obj) in uowcommit.attributes: + if child is None or (reverse_dep and (reverse_dep, "manytomany", child, obj) in uowcommit.attributes): continue associationrow = {} self._synchronize(obj, child, associationrow, False, uowcommit) |