MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / operate

Method operate

lib/sqlalchemy/sql/elements.py:1590–1596  ·  view source on GitHub ↗
(
        self,
        op: operators.OperatorType,
        *other: Any,
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

1588 ) from err
1589
1590 def operate(
1591 self,
1592 op: operators.OperatorType,
1593 *other: Any,
1594 **kwargs: Any,
1595 ) -> ColumnElement[Any]:
1596 return op(self.comparator, *other, **kwargs) # type: ignore[no-any-return] # noqa: E501
1597
1598 def reverse_operate(
1599 self, op: operators.OperatorType, other: Any, **kwargs: Any

Callers 1

operateMethod · 0.45

Calls 1

opFunction · 0.85

Tested by

no test coverage detected