Implement the ``>`` operator. In a column context, produces the clause ``a > b``.
(self, other: Any)
| 787 | isnot_distinct_from = is_not_distinct_from |
| 788 | |
| 789 | def __gt__(self, other: Any) -> ColumnOperators: |
| 790 | """Implement the ``>`` operator. |
| 791 | |
| 792 | In a column context, produces the clause ``a > b``. |
| 793 | |
| 794 | """ |
| 795 | return self.operate(gt, other) |
| 796 | |
| 797 | def __ge__(self, other: Any) -> ColumnOperators: |
| 798 | """Implement the ``>=`` operator. |