(self, element, **kw)
| 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, |
nothing calls this directly
no test coverage detected