Refs #26430 -- Removed unused branch in sql.Query.get_count().
Now that sql.Query.get_aggregation() properly deals with empty result
sets summary Count() annotations cannot result in None.
Unused since 9f3cce172f
.
This commit is contained in:
parent
604df4e0ad
commit
0f3e1a54bf
|
@ -513,10 +513,7 @@ class Query(BaseExpression):
|
||||||
"""
|
"""
|
||||||
obj = self.clone()
|
obj = self.clone()
|
||||||
obj.add_annotation(Count('*'), alias='__count', is_summary=True)
|
obj.add_annotation(Count('*'), alias='__count', is_summary=True)
|
||||||
number = obj.get_aggregation(using, ['__count'])['__count']
|
return obj.get_aggregation(using, ['__count'])['__count']
|
||||||
if number is None:
|
|
||||||
number = 0
|
|
||||||
return number
|
|
||||||
|
|
||||||
def has_filters(self):
|
def has_filters(self):
|
||||||
return self.where
|
return self.where
|
||||||
|
|
Loading…
Reference in New Issue