]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- fixed precedence of operators so that parenthesis are correctly applied
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 25 Jun 2007 17:07:25 +0000 (17:07 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 25 Jun 2007 17:07:25 +0000 (17:07 +0000)
commitbc58df9c1f1f443b67a3312463df2c9425531503
tree51f4354e740700f911ba917cdd6c23818bac97bb
parentf9dc30f239d1aa13771f0e152af691a8ae56514b
- fixed precedence of operators so that parenthesis are correctly applied
[ticket:620]
- calling <column>.in_() (i.e. with no arguments) will return
"CASE WHEN (<column> IS NULL) THEN NULL ELSE 0 END = 1)", so that
NULL or False is returned in all cases, rather than throwing an error
[ticket:545]
CHANGES
lib/sqlalchemy/sql.py
test/sql/query.py
test/sql/select.py