(self, binary, operator, **kw)
| 3704 | return self.visit_like_op_binary(binary, operator, **kw) |
| 3705 | |
| 3706 | def visit_not_contains_op_binary(self, binary, operator, **kw): |
| 3707 | binary = binary._clone() |
| 3708 | percent = self._like_percent_literal |
| 3709 | binary.right = percent.concat(binary.right).concat(percent) |
| 3710 | return self.visit_not_like_op_binary(binary, operator, **kw) |
| 3711 | |
| 3712 | def visit_icontains_op_binary(self, binary, operator, **kw): |
| 3713 | binary = binary._clone() |
nothing calls this directly
no test coverage detected