(self, binary, operator, **kw)
| 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() |
| 3732 | percent = self._like_percent_literal |
| 3733 | binary.right = percent._rconcat(binary.right) |
| 3734 | return self.visit_like_op_binary(binary, operator, **kw) |
| 3735 | |
| 3736 | def visit_not_startswith_op_binary(self, binary, operator, **kw): |
| 3737 | binary = binary._clone() |
nothing calls this directly
no test coverage detected