diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-02-02 20:06:31 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-02-02 20:06:31 -0500 |
commit | af44efe26e3f703ca1c30e79ee68428eed35abcf (patch) | |
tree | a0b5a20398ef9a54c187cb802fe9922a2f99cb91 /lib/sqlalchemy/sql/util.py | |
parent | eea0ca9fb4f21c37d1a8c4beb9d6327b19fc3d0f (diff) | |
download | sqlalchemy-af44efe26e3f703ca1c30e79ee68428eed35abcf.tar.gz |
Fixed a bug regarding column annotations which in particular
could impact some usages of the new :func:`.orm.remote` and
:func:`.orm.local` annotation functions, where annotations
could be lost when the column were used in a subsequent
expression.
[ticket:2660]
Diffstat (limited to 'lib/sqlalchemy/sql/util.py')
-rw-r--r-- | lib/sqlalchemy/sql/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/util.py b/lib/sqlalchemy/sql/util.py index aab1ae5ba..fd138cfec 100644 --- a/lib/sqlalchemy/sql/util.py +++ b/lib/sqlalchemy/sql/util.py @@ -449,7 +449,7 @@ class Annotated(object): def _with_annotations(self, values): clone = self.__class__.__new__(self.__class__) clone.__dict__ = self.__dict__.copy() - expression.ColumnElement.comparator._reset(self) + expression.ColumnElement.comparator._reset(clone) clone._annotations = values return clone |