(self)
| 106 | super().__init__(*expressions, **extra) |
| 107 | |
| 108 | def get_source_fields(self): |
| 109 | # Don't consider filter and order by expression as they have nothing |
| 110 | # to do with the output field resolution. |
| 111 | return [e._output_field_or_none for e in super().get_source_expressions()] |
| 112 | |
| 113 | def get_source_expressions(self): |
| 114 | source_expressions = super().get_source_expressions() |
nothing calls this directly
no test coverage detected