(self, binary, operator, **kw)
| 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() |
| 3723 | percent = self._like_percent_literal |
| 3724 | binary.left = ilike_case_insensitive(binary.left) |
| 3725 | binary.right = percent.concat( |
| 3726 | ilike_case_insensitive(binary.right) |
| 3727 | ).concat(percent) |
| 3728 | return self.visit_not_ilike_op_binary(binary, operator, **kw) |
| 3729 | |
| 3730 | def visit_startswith_op_binary(self, binary, operator, **kw): |
| 3731 | binary = binary._clone() |
nothing calls this directly
no test coverage detected