MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / visit_between_op_binary

Method visit_between_op_binary

lib/sqlalchemy/sql/compiler.py:3823–3827  ·  view source on GitHub ↗
(self, binary, operator, **kw)

Source from the content-addressed store, hash-verified

3821 return self.visit_not_like_op_binary(binary, operator, **kw)
3822
3823 def visit_between_op_binary(self, binary, operator, **kw):
3824 symmetric = binary.modifiers.get("symmetric", False)
3825 return self._generate_generic_binary(
3826 binary, " BETWEEN SYMMETRIC " if symmetric else " BETWEEN ", **kw
3827 )
3828
3829 def visit_not_between_op_binary(self, binary, operator, **kw):
3830 symmetric = binary.modifiers.get("symmetric", False)

Callers

nothing calls this directly

Calls 2

getMethod · 0.45

Tested by

no test coverage detected