(
expr: ColumnElement[Any], op: OperatorType, *arg: Any, **kw: Any
)
| 243 | |
| 244 | |
| 245 | def _unsupported_impl( |
| 246 | expr: ColumnElement[Any], op: OperatorType, *arg: Any, **kw: Any |
| 247 | ) -> NoReturn: |
| 248 | raise NotImplementedError( |
| 249 | "Operator '%s' is not supported on this expression" % op.__name__ |
| 250 | ) |
| 251 | |
| 252 | |
| 253 | def _inv_impl( |