(self, binary, operator, **kw)
| 3698 | return f"lower({element.element._compiler_dispatch(self, **kw)})" |
| 3699 | |
| 3700 | def visit_contains_op_binary(self, binary, operator, **kw): |
| 3701 | binary = binary._clone() |
| 3702 | percent = self._like_percent_literal |
| 3703 | binary.right = percent.concat(binary.right).concat(percent) |
| 3704 | return self.visit_like_op_binary(binary, operator, **kw) |
| 3705 | |
| 3706 | def visit_not_contains_op_binary(self, binary, operator, **kw): |
| 3707 | binary = binary._clone() |
nothing calls this directly
no test coverage detected