(self)
| 1507 | return self.as_sql(compiler, connection, **extra_context) |
| 1508 | |
| 1509 | def get_group_by_cols(self): |
| 1510 | group_by_cols = [] |
| 1511 | for expr in self.get_source_expressions(): |
| 1512 | group_by_cols.extend(expr.get_group_by_cols()) |
| 1513 | return group_by_cols |
| 1514 | |
| 1515 | |
| 1516 | class OrderByList(ExpressionList): |
nothing calls this directly
no test coverage detected