]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- The exists() construct won't "export" its contained list
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Sep 2008 22:50:37 +0000 (22:50 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Sep 2008 22:50:37 +0000 (22:50 +0000)
commite158234478f3bb17ec90e5dc5a125d0207d2d5fe
tree5eb6c9af9dea8e5b404a10513f1283b4bb7a14e0
parentbf71da5ee6961e4ce67d079651b38f414e641ac7
- The exists() construct won't "export" its contained list
of elements as FROM clauses, allowing them to be used more
effectively in the columns clause of a SELECT.

- and_() and or_() now generate a ColumnElement, allowing
boolean expressions as result columns, i.e.
select([and_(1, 0)]).  [ticket:798]
CHANGES
lib/sqlalchemy/sql/expression.py
test/orm/query.py
test/sql/query.py
test/sql/select.py