MCPcopy Create free account
hub / github.com/zzzeek/sqlalchemy / visit_not_between_op_binary

Method visit_not_between_op_binary

lib/sqlalchemy/sql/compiler.py:3829–3835  ·  view source on GitHub ↗
(self, binary, operator, **kw)

Source from the content-addressed store, hash-verified

3827 )
3828
3829 def visit_not_between_op_binary(self, binary, operator, **kw):
3830 symmetric = binary.modifiers.get("symmetric", False)
3831 return self._generate_generic_binary(
3832 binary,
3833 " NOT BETWEEN SYMMETRIC " if symmetric else " NOT BETWEEN ",
3834 **kw,
3835 )
3836
3837 def visit_regexp_match_op_binary(
3838 self, binary: BinaryExpression[Any], operator: Any, **kw: Any

Callers

nothing calls this directly

Calls 2

getMethod · 0.45

Tested by

no test coverage detected