MCPcopy
hub / github.com/django/django / get_source_fields

Method get_source_fields

django/db/models/aggregates.py:108–111  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected