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

Method visit_scalar_function_column

lib/sqlalchemy/sql/compiler.py:3103–3106  ·  view source on GitHub ↗
(self, element, **kw)

Source from the content-addressed store, hash-verified

3101 )
3102
3103 def visit_scalar_function_column(self, element, **kw):
3104 compiled_fn = self.visit_function(element.fn, **kw)
3105 compiled_col = self.visit_column(element, **kw)
3106 return "(%s).%s" % (compiled_fn, compiled_col)
3107
3108 def visit_function(
3109 self,

Callers

nothing calls this directly

Calls 2

visit_functionMethod · 0.95
visit_columnMethod · 0.95

Tested by

no test coverage detected