]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Support method form of any_(), all_()
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 27 Sep 2017 14:14:57 +0000 (10:14 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 27 Sep 2017 19:50:07 +0000 (15:50 -0400)
commit3a8a8b9bc581fd0b9b61b386e4b0c9273707aef6
tree1dcb230576f2b87249bcaf34bf23b119af7c3b6d
parentd00a4f7cab11641acb9a48ba4e941ad56fb128d2
Support method form of any_(), all_()

Fixed bug where the recently added :meth:`.ColumnOperators.any_`
and :meth:`.ColumnOperators.all_` methods didn't work when called
as methods, as opposed to using the standalone functions
:func:`~.expression.any_` and :func:`~.expression.all_`.  Also
added documentation examples for these relatively unintuitive
SQL operators.

Change-Id: I3e56b463e9fd146a077b9970624f50cba27f9811
Fixes: #4093
(cherry picked from commit 944c662d8add498577d6359251d4b94cd84d4011)
doc/build/changelog/unreleased_11/4093.rst [new file with mode: 0644]
lib/sqlalchemy/sql/default_comparator.py
lib/sqlalchemy/sql/operators.py
test/sql/test_operators.py