MCPcopy
hub / github.com/django/django / get_cols

Method get_cols

django/db/models/expressions.py:1409–1413  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1407 )
1408
1409 def get_cols(self):
1410 return [
1411 Col(self.alias, target, source)
1412 for target, source in zip(self.targets, self.sources)
1413 ]
1414
1415 def get_source_expressions(self):
1416 return self.get_cols()

Callers 5

__iter__Method · 0.95
as_sqlMethod · 0.95
as_sqlMethod · 0.80
resolve_expressionMethod · 0.80

Calls 1

ColClass · 0.85

Tested by

no test coverage detected