For example i have a model
{{{
class MyModel(Model):
grouping_field = TextField()
amount_field_1 = IntegerField()
amount_field_2 = IntegerField()
queryset = MyModel.objects.values('grouping_field')
# This is ok!
queryset.annotate(amount_field_1=Sum('amount_field_1'))
# This triggers error!
# {FieldError}Cannot compute Sum('<CombinedExpression:
F(amount_field_1) + F(amount_field_2)>'): '<CombinedExpression: ...>' is
an aggregate
queryset.annotate(
amount_field_1=Sum('amount_field_1'),
amount_field_2=Sum(F('amount_field_1') + F('amount_field_2')),
)
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/28078>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
Comment (by Simon Charette):
While the exception is different this looks similar to #28072.
--
Ticket URL: <https://code.djangoproject.com/ticket/28078#comment:1>
* type: Uncategorized => Cleanup/optimization
* stage: Unreviewed => Accepted
Comment:
I'm not sure what should be done here, accepting for further
investigation.
--
Ticket URL: <https://code.djangoproject.com/ticket/28078#comment:2>
* status: new => closed
* resolution: => invalid
Comment:
After further review I'm going to close this one as invalid.
If you shadow a field with an annotation (this seems to be only allowed
here because `values` is used prior see #28072) then the ORM will default
to the annotation override, `F` doesn't mean field reference it should
have been name `Ref` (and `Ref` should have been named `ResolvedRef`).
If you want to keep referring to `MyModel.amount_field_1` you must create
an alias to it prior to shadowing it with your annotation
{{{#!python
MyModel.objects.annotate(amount_field_1_alias=F("amount_field_1")).values(
"grouping_field"
).annotate(
amount_field_1=Sum("amount_field_1"),
amount_field_2=Sum(F("amount_field_1_alias") + F("amount_field_2")),
)
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/28078#comment:3>