(self, binary, operator, **kw)
| 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() |
| 3777 | percent = self._like_percent_literal |
| 3778 | binary.left = ilike_case_insensitive(binary.left) |
| 3779 | binary.right = percent.concat(ilike_case_insensitive(binary.right)) |
| 3780 | return self.visit_not_ilike_op_binary(binary, operator, **kw) |
| 3781 | |
| 3782 | def visit_like_op_binary(self, binary, operator, **kw): |
| 3783 | escape = binary.modifiers.get("escape", None) |
nothing calls this directly
no test coverage detected