diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-10 13:45:19 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-10 13:45:19 -0400 |
| commit | b614a24c5ddf4c7c7aa45e1eaeb3f82e36737729 (patch) | |
| tree | 95c31f73e46603c154124f7c69d2a2cb7943157a /lib/sqlalchemy/orm/util.py | |
| parent | 1652491cc6ef44c803e58c0d842818ab7310f498 (diff) | |
| download | sqlalchemy-b614a24c5ddf4c7c7aa45e1eaeb3f82e36737729.tar.gz | |
Fixed the interaction between composite attributes and
the :func:`.aliased` function. Previously, composite attributes
wouldn't work correctly in comparison operations when aliasing
was applied. Also in 0.8.2. [ticket:2755]
Diffstat (limited to 'lib/sqlalchemy/orm/util.py')
| -rw-r--r-- | lib/sqlalchemy/orm/util.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/util.py b/lib/sqlalchemy/orm/util.py index 38cf58792..ef9de760e 100644 --- a/lib/sqlalchemy/orm/util.py +++ b/lib/sqlalchemy/orm/util.py @@ -575,7 +575,6 @@ class AliasedClass(object): def __adapt_prop(self, existing, key): comparator = existing.comparator.adapted(self.__adapt_element) - queryattr = attributes.QueryableAttribute( self, key, impl=existing.impl, |
