MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / all_

Method all_

lib/sqlalchemy/sql/operators.py:2003–2016  ·  view source on GitHub ↗

Produce an :func:`_expression.all_` clause against the parent object. See the documentation for :func:`_sql.all_` for examples. .. note:: be sure to not confuse the newer :meth:`_sql.ColumnOperators.all_` method with the **legacy** version of this me

(self)

Source from the content-addressed store, hash-verified

2001 return self.operate(any_op)
2002
2003 def all_(self) -> ColumnOperators:
2004 """Produce an :func:`_expression.all_` clause against the
2005 parent object.
2006
2007 See the documentation for :func:`_sql.all_` for examples.
2008
2009 .. note:: be sure to not confuse the newer
2010 :meth:`_sql.ColumnOperators.all_` method with the **legacy**
2011 version of this method, the :meth:`_types.ARRAY.Comparator.all`
2012 method that's specific to :class:`_types.ARRAY`, which uses a
2013 different calling style.
2014
2015 """
2016 return self.operate(all_op)
2017
2018 def __add__(self, other: Any) -> ColumnOperators:
2019 """Implement the ``+`` operator.

Callers 4

all_opFunction · 0.45
all_Function · 0.45
operators.pyFile · 0.45

Calls 1

operateMethod · 0.95

Tested by 1