MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / collate

Method collate

lib/sqlalchemy/sql/operators.py:1929–1938  ·  view source on GitHub ↗

Produce a :func:`_expression.collate` clause against the parent object, given the collation string. .. seealso:: :func:`_expression.collate`

(self, collation: str)

Source from the content-addressed store, hash-verified

1927 )
1928
1929 def collate(self, collation: str) -> ColumnOperators:
1930 """Produce a :func:`_expression.collate` clause against
1931 the parent object, given the collation string.
1932
1933 .. seealso::
1934
1935 :func:`_expression.collate`
1936
1937 """
1938 return self.operate(collate, collation)
1939
1940 def __radd__(self, other: Any) -> ColumnOperators:
1941 """Implement the ``+`` operator in reverse.

Calls 1

operateMethod · 0.95