]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- expr.in_() now accepts a text() construct as the argument.
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 8 May 2010 20:25:30 +0000 (16:25 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 8 May 2010 20:25:30 +0000 (16:25 -0400)
commit074ecc43761f1af1de0d29f077e93f641c73c61e
tree6c41939142de2e5464e043da9bb1a46773a6d8d0
parent6ea6673376609ce6a5e26f9f20425cffee96bcd8
- expr.in_() now accepts a text() construct as the argument.
Grouping parenthesis are added automatically, i.e. usage
is like `col.in_(text("select id from table"))`.
[ticket:1793]
CHANGES
lib/sqlalchemy/sql/expression.py
test/sql/test_compiler.py