MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / visit_not_match_op_binary

Method visit_not_match_op_binary

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

Source from the content-addressed store, hash-verified

3364 return "%s = 0" % self.process(element.element, **kw)
3365
3366 def visit_not_match_op_binary(self, binary, operator, **kw):
3367 return "NOT %s" % self.visit_binary(
3368 binary, override_operator=operators.match_op
3369 )
3370
3371 def visit_not_in_op_binary(self, binary, operator, **kw):
3372 # The brackets are required in the NOT IN operation because the empty

Callers

nothing calls this directly

Calls 1

visit_binaryMethod · 0.95

Tested by

no test coverage detected