MCPcopy Create free account
hub / github.com/zzzeek/sqlalchemy / _get_custom_operator_dispatch

Method _get_custom_operator_dispatch

lib/sqlalchemy/sql/compiler.py:3251–3253  ·  view source on GitHub ↗
(self, operator_, qualifier1)

Source from the content-addressed store, hash-verified

3249 return getattr(self, attrname, None)
3250
3251 def _get_custom_operator_dispatch(self, operator_, qualifier1):
3252 attrname = "visit_%s_op_%s" % (operator_.visit_name, qualifier1)
3253 return getattr(self, attrname, None)
3254
3255 def visit_unary(
3256 self, unary, add_to_result_map=None, result_map_targets=(), **kw

Calls

no outgoing calls

Tested by

no test coverage detected