Produce a :func:`_expression.collate` clause against the parent object, given the collation string. .. seealso:: :func:`_expression.collate`
(self, collation: str)
| 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. |