(self, binary, operator, **kw)
| 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() |
| 3714 | percent = self._like_percent_literal |
| 3715 | binary.left = ilike_case_insensitive(binary.left) |
| 3716 | binary.right = percent.concat( |
| 3717 | ilike_case_insensitive(binary.right) |
| 3718 | ).concat(percent) |
| 3719 | return self.visit_ilike_op_binary(binary, operator, **kw) |
| 3720 | |
| 3721 | def visit_not_icontains_op_binary(self, binary, operator, **kw): |
| 3722 | binary = binary._clone() |
nothing calls this directly
no test coverage detected