MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __gt__

Method __gt__

lib/sqlalchemy/sql/operators.py:625–631  ·  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

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.

Callers

nothing calls this directly

Calls 1

operateMethod · 0.95

Tested by

no test coverage detected