(self, binary, operator, **kw)
| 3597 | return self.visit_not_like_op_binary(binary, operator, **kw) |
| 3598 | |
| 3599 | def visit_iendswith_op_binary(self, binary, operator, **kw): |
| 3600 | binary = binary._clone() |
| 3601 | percent = self._like_percent_literal |
| 3602 | binary.left = ilike_case_insensitive(binary.left) |
| 3603 | binary.right = percent.concat(ilike_case_insensitive(binary.right)) |
| 3604 | return self.visit_ilike_op_binary(binary, operator, **kw) |
| 3605 | |
| 3606 | def visit_not_iendswith_op_binary(self, binary, operator, **kw): |
| 3607 | binary = binary._clone() |
nothing calls this directly
no test coverage detected