]> 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:49:29 +0000 (15:49 -0400)
commit944c662d8add498577d6359251d4b94cd84d4011
treeacf7c45ef4ba10dde9a8d890b309defe69132830
parentdc4d1ee7bdf8f9670057e916a29f1f5252e77207
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
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