Produce an :func:`_expression.any_` clause against the parent object. See the documentation for :func:`_sql.any_` for examples. .. note:: be sure to not confuse the newer :meth:`_sql.ColumnOperators.any_` method with the **legacy** version of this me
(self)
| 1986 | return self.operate(distinct_op) |
| 1987 | |
| 1988 | def any_(self) -> ColumnOperators: |
| 1989 | """Produce an :func:`_expression.any_` clause against the |
| 1990 | parent object. |
| 1991 | |
| 1992 | See the documentation for :func:`_sql.any_` for examples. |
| 1993 | |
| 1994 | .. note:: be sure to not confuse the newer |
| 1995 | :meth:`_sql.ColumnOperators.any_` method with the **legacy** |
| 1996 | version of this method, the :meth:`_types.ARRAY.Comparator.any` |
| 1997 | method that's specific to :class:`_types.ARRAY`, which uses a |
| 1998 | different calling style. |
| 1999 | |
| 2000 | """ |
| 2001 | return self.operate(any_op) |
| 2002 | |
| 2003 | def all_(self) -> ColumnOperators: |
| 2004 | """Produce an :func:`_expression.all_` clause against the |
no test coverage detected