]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug whereby nesting a label of a select()
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 May 2011 16:07:40 +0000 (12:07 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 May 2011 16:07:40 +0000 (12:07 -0400)
commit00380cf3c304ea7f1c7397f17b828166364c36ac
tree06313059c6b410815aa40192ae86bbcede3a7b61
parentaea4b9928e99b04237f61aeccbeb31c02367a2c0
- Fixed bug whereby nesting a label of a select()
with another label in it would produce incorrect
exported columns.   Among other things this would
break an ORM column_property() mapping against
another column_property().  [ticket:2167].
Also in 0.6.8
- _Label() is always against a column or selectable.  remove
uncovered case of label against something else.
- start taking notes to clean up some of this labeling stuff,
which will be [ticket:2168]
CHANGES
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/sql/expression.py
test/orm/test_froms.py
test/sql/test_selectable.py