(self, binary, operator, **kw)
| 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 |
nothing calls this directly
no test coverage detected