]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- adjusted operator precedence of NOT to match '==' and others, so that
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 8 Sep 2007 20:19:48 +0000 (20:19 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 8 Sep 2007 20:19:48 +0000 (20:19 +0000)
commitb1c06998245d3190f4e7386285a20ae4c3f09f8c
treec3eaa0b91be33e6f5650b4672229e4c6cc812047
parent92c93755be131a4354db9371594838cacb501a66
- adjusted operator precedence of NOT to match '==' and others, so that
~(x==y) produces NOT (x=y), which is compatible with MySQL (doesn't like
"NOT x=y") [ticket:764]
CHANGES
lib/sqlalchemy/sql.py
test/sql/select.py