Implement the ``>>`` operator in reverse. Not used by SQLAlchemy core, this is provided for custom operator systems which want to use >> as an extension point.
(self, other: Any)
| 850 | return self.operate(rshift, other) |
| 851 | |
| 852 | def __rrshift__(self, other: Any) -> ColumnOperators: |
| 853 | """Implement the ``>>`` operator in reverse. |
| 854 | |
| 855 | Not used by SQLAlchemy core, this is provided |
| 856 | for custom operator systems which want to use |
| 857 | >> as an extension point. |
| 858 | """ |
| 859 | return self.reverse_operate(rshift, other) |
| 860 | |
| 861 | def __matmul__(self, other: Any) -> ColumnOperators: |
| 862 | """Implement the ``@`` operator. |
nothing calls this directly
no test coverage detected