(self, binary, operator, **kw)
| 3541 | return self.visit_not_like_op_binary(binary, operator, **kw) |
| 3542 | |
| 3543 | def visit_icontains_op_binary(self, binary, operator, **kw): |
| 3544 | binary = binary._clone() |
| 3545 | percent = self._like_percent_literal |
| 3546 | binary.left = ilike_case_insensitive(binary.left) |
| 3547 | binary.right = percent.concat( |
| 3548 | ilike_case_insensitive(binary.right) |
| 3549 | ).concat(percent) |
| 3550 | return self.visit_ilike_op_binary(binary, operator, **kw) |
| 3551 | |
| 3552 | def visit_not_icontains_op_binary(self, binary, operator, **kw): |
| 3553 | binary = binary._clone() |
nothing calls this directly
no test coverage detected