Return the underlying field types used by this aggregate.
(self)
| 466 | return cols |
| 467 | |
| 468 | def get_source_fields(self): |
| 469 | """Return the underlying field types used by this aggregate.""" |
| 470 | return [e._output_field_or_none for e in self.get_source_expressions()] |
| 471 | |
| 472 | def asc(self, **kwargs): |
| 473 | return OrderBy(self, **kwargs) |
no test coverage detected