(self, binary, operator, **kw)
| 3827 | ) |
| 3828 | |
| 3829 | def visit_not_between_op_binary(self, binary, operator, **kw): |
| 3830 | symmetric = binary.modifiers.get("symmetric", False) |
| 3831 | return self._generate_generic_binary( |
| 3832 | binary, |
| 3833 | " NOT BETWEEN SYMMETRIC " if symmetric else " NOT BETWEEN ", |
| 3834 | **kw, |
| 3835 | ) |
| 3836 | |
| 3837 | def visit_regexp_match_op_binary( |
| 3838 | self, binary: BinaryExpression[Any], operator: Any, **kw: Any |
nothing calls this directly
no test coverage detected