Removed unnecessary WhereNode.is_summary.
Unnecessary since its introduction in 1df89a60c5
.
This commit is contained in:
parent
f0776a558c
commit
b64db05b9c
|
@ -182,10 +182,6 @@ class WhereNode(tree.Node):
|
||||||
def contains_over_clause(self):
|
def contains_over_clause(self):
|
||||||
return self._contains_over_clause(self)
|
return self._contains_over_clause(self)
|
||||||
|
|
||||||
@property
|
|
||||||
def is_summary(self):
|
|
||||||
return any(child.is_summary for child in self.children)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _resolve_leaf(expr, query, *args, **kwargs):
|
def _resolve_leaf(expr, query, *args, **kwargs):
|
||||||
if hasattr(expr, 'resolve_expression'):
|
if hasattr(expr, 'resolve_expression'):
|
||||||
|
|
Loading…
Reference in New Issue