]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- BooleanExpression includes new "negate" argument to specify
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Sep 2006 17:15:33 +0000 (17:15 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Sep 2006 17:15:33 +0000 (17:15 +0000)
commit887fdc87efa77273cf1cae7647bb04fa398aa1ad
tree6013bf061d660e96b4e23ade49447d49452e13de
parent399865aad0a47a21b96070492c84b3efa6ba9a77
- BooleanExpression includes new "negate" argument to specify
the appropriate negation operator if one is available.
- calling a negation on an "IN" or "IS" clause will result in
"NOT IN", "IS NOT" (as opposed to NOT (x IN y)).
CHANGES
lib/sqlalchemy/sql.py
test/sql/select.py