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

Method _group_by_clause

lib/sqlalchemy/sql/selectable.py:4234–4238  ·  view source on GitHub ↗

ClauseList access to group_by_clauses for legacy dialects

(self)

Source from the content-addressed store, hash-verified

4232
4233 @property
4234 def _group_by_clause(self) -> ClauseList:
4235 """ClauseList access to group_by_clauses for legacy dialects"""
4236 return ClauseList._construct_raw(
4237 operators.comma_op, self._group_by_clauses
4238 )
4239
4240 @property
4241 def _order_by_clause(self) -> ClauseList:

Callers

nothing calls this directly

Calls 1

_construct_rawMethod · 0.45

Tested by

no test coverage detected