diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-28 12:43:36 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-28 12:43:36 -0400 |
| commit | ec3e6c7dc2c03849b140c17e17e1efdc2f932a4a (patch) | |
| tree | d82b8abf889248a00a18e4dc15508c380308e0f9 /lib/sqlalchemy/orm | |
| parent | abc8e45b2f94dee88aa712b21470d65f942f12b2 (diff) | |
| download | sqlalchemy-ec3e6c7dc2c03849b140c17e17e1efdc2f932a4a.tar.gz | |
- Fixed bug whereby columns on a mixin wouldn't propagate
correctly to a single-table inheritance scheme where
the attribute name is different than that of the column.
[ticket:1930]. Note [ticket:1931] which is the same
issue for joined inh, not yet resolved.
Diffstat (limited to 'lib/sqlalchemy/orm')
| -rw-r--r-- | lib/sqlalchemy/orm/attributes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/attributes.py b/lib/sqlalchemy/orm/attributes.py index b56de5f05..ddaf62c7f 100644 --- a/lib/sqlalchemy/orm/attributes.py +++ b/lib/sqlalchemy/orm/attributes.py @@ -399,7 +399,7 @@ class AttributeImpl(object): # Return a new, empty value return self.initialize(state, dict_) - + def append(self, state, dict_, value, initiator, passive=PASSIVE_OFF): self.set(state, dict_, value, initiator, passive=passive) |
