Implement the ``>`` operator. In a column context, produces the clause ``a > b``.
(self, other: Any)
| 623 | isnot_distinct_from = is_not_distinct_from |
| 624 | |
| 625 | def __gt__(self, other: Any) -> ColumnOperators: |
| 626 | """Implement the ``>`` operator. |
| 627 | |
| 628 | In a column context, produces the clause ``a > b``. |
| 629 | |
| 630 | """ |
| 631 | return self.operate(gt, other) |
| 632 | |
| 633 | def __ge__(self, other: Any) -> ColumnOperators: |
| 634 | """Implement the ``>=`` operator. |