]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Fully implemented the IS and IS NOT operators with
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 22 Apr 2013 23:12:47 +0000 (19:12 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 22 Apr 2013 23:12:47 +0000 (19:12 -0400)
commit5884c2e7e5b46cee29b90aa3f7161e7380e3e2a5
treeed8a37934eb00d4c01bfeec117ea7b1bb980db68
parent63c211f42730011760aa8e3f88b2171b23bc0a60
Fully implemented the IS and IS NOT operators with
regards to the True/False constants.  An expression like
``col.is_(True)`` will now render ``col IS true``
on the target platform, rather than converting the True/
False constant to an integer bound parameter.
This allows the ``is_()`` operator to work on MySQL when
given True/False constants.
[ticket:2682]
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/sql/expression.py
test/sql/test_operators.py