(self, binary, operator, **kw)
| 3740 | return self.visit_not_like_op_binary(binary, operator, **kw) |
| 3741 | |
| 3742 | def visit_istartswith_op_binary(self, binary, operator, **kw): |
| 3743 | binary = binary._clone() |
| 3744 | percent = self._like_percent_literal |
| 3745 | binary.left = ilike_case_insensitive(binary.left) |
| 3746 | binary.right = percent._rconcat(ilike_case_insensitive(binary.right)) |
| 3747 | return self.visit_ilike_op_binary(binary, operator, **kw) |
| 3748 | |
| 3749 | def visit_not_istartswith_op_binary(self, binary, operator, **kw): |
| 3750 | binary = binary._clone() |
nothing calls this directly
no test coverage detected