(self, binary, operator, **kw)
| 3803 | ) |
| 3804 | |
| 3805 | def visit_ilike_op_binary(self, binary, operator, **kw): |
| 3806 | if operator is operators.ilike_op: |
| 3807 | binary = binary._clone() |
| 3808 | binary.left = ilike_case_insensitive(binary.left) |
| 3809 | binary.right = ilike_case_insensitive(binary.right) |
| 3810 | # else we assume ilower() has been applied |
| 3811 | |
| 3812 | return self.visit_like_op_binary(binary, operator, **kw) |
| 3813 | |
| 3814 | def visit_not_ilike_op_binary(self, binary, operator, **kw): |
| 3815 | if operator is operators.not_ilike_op: |
no test coverage detected