(self, binary, operator, **kw)
| 3754 | return self.visit_not_ilike_op_binary(binary, operator, **kw) |
| 3755 | |
| 3756 | def visit_endswith_op_binary(self, binary, operator, **kw): |
| 3757 | binary = binary._clone() |
| 3758 | percent = self._like_percent_literal |
| 3759 | binary.right = percent.concat(binary.right) |
| 3760 | return self.visit_like_op_binary(binary, operator, **kw) |
| 3761 | |
| 3762 | def visit_not_endswith_op_binary(self, binary, operator, **kw): |
| 3763 | binary = binary._clone() |
nothing calls this directly
no test coverage detected