MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / visit_withingroup

Method visit_withingroup

lib/sqlalchemy/sql/compiler.py:3028–3032  ·  view source on GitHub ↗
(self, withingroup, **kwargs)

Source from the content-addressed store, hash-verified

3026 )
3027
3028 def visit_withingroup(self, withingroup, **kwargs):
3029 return "%s WITHIN GROUP (ORDER BY %s)" % (
3030 withingroup.element._compiler_dispatch(self, **kwargs),
3031 withingroup.order_by._compiler_dispatch(self, **kwargs),
3032 )
3033
3034 def visit_funcfilter(self, funcfilter, **kwargs):
3035 return "%s FILTER (WHERE %s)" % (

Callers 1

Calls 1

_compiler_dispatchMethod · 0.45

Tested by

no test coverage detected