(self, binary, operator, **kw)
| 3529 | return f"lower({element.element._compiler_dispatch(self, **kw)})" |
| 3530 | |
| 3531 | def visit_contains_op_binary(self, binary, operator, **kw): |
| 3532 | binary = binary._clone() |
| 3533 | percent = self._like_percent_literal |
| 3534 | binary.right = percent.concat(binary.right).concat(percent) |
| 3535 | return self.visit_like_op_binary(binary, operator, **kw) |
| 3536 | |
| 3537 | def visit_not_contains_op_binary(self, binary, operator, **kw): |
| 3538 | binary = binary._clone() |
nothing calls this directly
no test coverage detected