(self, binary, operator, **kw)
| 3766 | return self.visit_not_like_op_binary(binary, operator, **kw) |
| 3767 | |
| 3768 | def visit_iendswith_op_binary(self, binary, operator, **kw): |
| 3769 | binary = binary._clone() |
| 3770 | percent = self._like_percent_literal |
| 3771 | binary.left = ilike_case_insensitive(binary.left) |
| 3772 | binary.right = percent.concat(ilike_case_insensitive(binary.right)) |
| 3773 | return self.visit_ilike_op_binary(binary, operator, **kw) |
| 3774 | |
| 3775 | def visit_not_iendswith_op_binary(self, binary, operator, **kw): |
| 3776 | binary = binary._clone() |
nothing calls this directly
no test coverage detected