Fixed #30099 -- Fixed invalid SQL when filtering a Subquery by an aggregate.

This commit is contained in:
Nasir Hussain 2019-01-15 01:52:09 +05:00 committed by Tim Graham
parent 87bf35abd3
commit f021c110d0
3 changed files with 14 additions and 0 deletions

View file

@ -994,6 +994,7 @@ class Subquery(Expression):
query which will be resolved when it is applied to that query.
"""
template = '(%(subquery)s)'
contains_aggregate = False
def __init__(self, queryset, output_field=None, **extra):
self.queryset = queryset