is correctly propagated to the attribute manager.
- Query.add_column() can accept FromClause objects
in the same manner as session.query() can.
+
+ - the "passive" flag on session.is_modified()
+ is correctly propagated to the attribute manager.
- postgres
- Calling alias.execute() in conjunction with
for attr in state.manager.attributes:
if not include_collections and hasattr(attr.impl, 'get_collection'):
continue
- (added, unchanged, deleted) = attr.get_history(instance)
+ (added, unchanged, deleted) = attr.get_history(instance, passive=passive)
if added or deleted:
return True
return False