Opened 9 years ago
Closed 9 years ago
#25095 closed Bug (fixed)
Fields annotated for filtering which are not included in values are included in GROUP BY clause in SQL
Reported by: | mitchelljkotler | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
I am running a complex query, which annotates certain fields solely to filter on them. They are not included in a call to values. Another annotation is included, but it is incorrect due to the previous annotations being included in the GROUP BY clause.
Here is a not so simple example:
# We are filtering on the journey date, using the datediff function # We annotate the reported tds fields, since we need two aliases of them for the different filterings applied print EpTag.objects.filter(statuschanges__status=attached)\ .annotate(attach_date=F('statuschanges__reported_tds'))\ .filter(statuschanges__status=detached)\ .annotate(detach_date=F('statuschanges__reported_tds'))\ .annotate(journey_days=Func(F('detach_date'), F('attach_date'), function='DATEDIFF', output_field=IntegerField()))\ .filter(journey_days__lt=10)\ .annotate(name=F('object__producer__name'))\ .values('object__producer', 'name')\ .annotate(count=Count('pk', distinct=True))\ .order_by().query SELECT `ep_object`.`cid`, `ep_entity`.`name` AS `name`, COUNT(nnn `ep_tag`.`tid`) AS `count` FROM `ep_tag` INNER JOIN `ep_statuschange` ON ( `ep_tag`.`tid` = `ep_statuschange`.`tid` ) INNER JOIN `ep_statuschange` T4 ON ( `ep_tag`.`tid` = T4.`tid` ) LEFT OUTER JOIN `ep_object` ON ( `ep_tag`.`oid` = `ep_object`.`oid` ) LEFT OUTER JOIN `ep_entity` ON ( `ep_object`.`cid` = `ep_entity`.`eid` ) WHERE (`ep_statuschange`.`statusid` = 201 AND T4.`statusid` = 1000 AND DATEDIFF(T4.`reported_tds`, `ep_statuschange`.`reported_tds`) < 10) # Group by still includes reported_tds and DATEDIFF fields, even though they were not selected. This breaks my count GROUP BY `ep_object`.`cid`, `ep_statuschange`.`reported_tds`, T4.`reported_tds`, DATEDIFF(T4.`reported_tds`, `ep_statuschange`.`reported_tds`), `ep_entity`.`name` ORDER BY NULL
In django/db/models/sql/query.py, line 1751 - all annotations are included in the group by. I believe this should be using annotation_select instead of annotations.
Change History (10)
comment:1 by , 9 years ago
Triage Stage: | Unreviewed → Accepted |
---|---|
Version: | 1.8 → master |
comment:2 by , 9 years ago
We need to also test that:
FTest.objects.annotate(talking=F('talk')).filter(talking__lte=30).values('hold', 'talking').annotate(thecount=Count('pk')).values('hold')
does use the talking annotation in the group by.
comment:3 by , 9 years ago
Description: | modified (diff) |
---|
I created a pull request, 5002.
It adds one test to test for this issue.
@akaariai, I am not sure I understand what you want to test with that test case.
comment:4 by , 9 years ago
akaariai wants to ensure that adding the annotation to the values()
call still includes that annotation in the group by, even though the final values()
call does not include the annotation. This is important, because we still need to add the annotation to the group by, since it was included before the aggregate, even though it's excluded from the final select list.
comment:5 by , 9 years ago
Has patch: | set |
---|---|
Patch needs improvement: | set |
comment:6 by , 9 years ago
Patch needs improvement: | unset |
---|
I have added the test that akaariai requested. I believe the patch is ready to go now.
comment:7 by , 9 years ago
The second test you added doesn't actually test what akaariai wants tested. I've made a comment on the new commit though, with a code example of what type of query needs to be tested. Hope that's clearer.
Copying the test query below:
vals = list( Book.objects.annotate(xprice=F('price')) .filter(xprice__lte=30).values('publisher', 'xprice') # xprice should now be in the group by clause .annotate(count=Count('pk')).values('publisher', 'count') # but xprice won't be in final select list returned .order_by('publisher'))
comment:8 by , 9 years ago
Sorry about that. I have updated the test and improved the formatting. Thanks.
comment:9 by , 9 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
This is good to go pending a fix for the test on Oracle.
I've replicated the problem:
It seems like your proposed fix works for your case, but my test VM is broken at the moment so I can't run the full test suite.
With the patch applied:
To hopefully clear up the report somewhat, the issue is that all annotations are added to the group by list, even if they aren't in the select list. By applying the above patch, we only add the annotations in the select list to the group by list.
I'd like to see a test that had an annotation in the .order_by() clause that wasn't included in .values(), just to ensure we aren't removing too much from the group by.
Thanks for the great report and the fix. If you'd like to open up a pull request with the proposed change and some tests, that'd be very welcome.