summaryrefslogtreecommitdiff
path: root/django/db/models/sql
diff options
context:
space:
mode:
authorAnssi Kääriäinen <anssi.kaariainen@thl.fi>2015-03-04 14:56:20 +0200
committerTim Graham <timograham@gmail.com>2015-03-09 07:51:05 -0400
commit3a0fe942ddf56ddcf4b958147f3914fe2788db30 (patch)
treec79f79edb1f21bc1c0b0ad8f202f12a0d2311c99 /django/db/models/sql
parent83269b2935fd0223def49626c2a8dcea821e93c3 (diff)
[1.8.x] Fixed #24171 -- Fixed failure with complex aggregate query and expressions
The query used a construct of qs.annotate().values().aggregate() where the first annotate used an F-object reference and the values() and aggregate() calls referenced that F-object. Also made sure the inner query's select clause is as simple as possible, and made sure .values().distinct().aggreate() works correctly. Backport of fb146193c49e4c683dc8da39d9b7c479375fdb57 from master
Diffstat (limited to 'django/db/models/sql')
-rw-r--r--django/db/models/sql/query.py27
1 files changed, 23 insertions, 4 deletions
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py
index 344b298688..7ba94f205b 100644
--- a/django/db/models/sql/query.py
+++ b/django/db/models/sql/query.py
@@ -351,7 +351,7 @@ class Query(object):
# is selected.
col_cnt += 1
col_alias = '__col%d' % col_cnt
- self.annotation_select[col_alias] = expr
+ self.annotations[col_alias] = expr
self.append_annotation_mask([col_alias])
new_exprs.append(Ref(col_alias, expr))
else:
@@ -390,10 +390,22 @@ class Query(object):
from django.db.models.sql.subqueries import AggregateQuery
outer_query = AggregateQuery(self.model)
inner_query = self.clone()
- if not has_limit and not self.distinct_fields:
- inner_query.clear_ordering(True)
inner_query.select_for_update = False
inner_query.select_related = False
+ if not has_limit and not self.distinct_fields:
+ # Queries with distinct_fields need ordering and when a limit
+ # is applied we must take the slice from the ordered query.
+ # Otherwise no need for ordering.
+ inner_query.clear_ordering(True)
+ if not inner_query.distinct:
+ # If the inner query uses default select and it has some
+ # aggregate annotations, then we must make sure the inner
+ # query is grouped by the main model's primary key. However,
+ # clearing the select clause can alter results if distinct is
+ # used.
+ if inner_query.default_cols and has_existing_annotations:
+ inner_query.group_by = [self.model._meta.pk.get_col(inner_query.get_initial_alias())]
+ inner_query.default_cols = False
relabels = {t: 'subquery' for t in inner_query.tables}
relabels[None] = 'subquery'
@@ -404,7 +416,14 @@ class Query(object):
if expression.is_summary:
expression, col_cnt = inner_query.rewrite_cols(expression, col_cnt)
outer_query.annotations[alias] = expression.relabeled_clone(relabels)
- del inner_query.annotation_select[alias]
+ del inner_query.annotations[alias]
+ # Make sure the annotation_select wont use cached results.
+ inner_query.set_annotation_mask(inner_query.annotation_select_mask)
+ if inner_query.select == [] and not inner_query.default_cols and not inner_query.annotation_select_mask:
+ # In case of Model.objects[0:3].count(), there would be no
+ # field selected in the inner query, yet we must use a subquery.
+ # So, make sure at least one field is selected.
+ inner_query.select = [self.model._meta.pk.get_col(inner_query.get_initial_alias())]
try:
outer_query.add_subquery(inner_query, using)
except EmptyResultSet: