MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __gt__

Method __gt__

lib/sqlalchemy/sql/operators.py:789–795  ·  view source on GitHub ↗

Implement the ``>`` operator. In a column context, produces the clause ``a > b``.

(self, other: Any)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

operateMethod · 0.95

Tested by

no test coverage detected