diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-22 19:12:47 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-22 19:12:47 -0400 |
| commit | 5884c2e7e5b46cee29b90aa3f7161e7380e3e2a5 (patch) | |
| tree | ed8a37934eb00d4c01bfeec117ea7b1bb980db68 /doc | |
| parent | 63c211f42730011760aa8e3f88b2171b23bc0a60 (diff) | |
| download | sqlalchemy-5884c2e7e5b46cee29b90aa3f7161e7380e3e2a5.tar.gz | |
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]
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 489cad582..1f8998452 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -7,6 +7,18 @@ :version: 0.8.1 .. change:: + :tags: bug, sql, mysql + :tickets: 2682 + + 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. + + .. change:: :tags: bug, postgresql :tickets: 2681 |
