Stopped setting BaseExpression.copied on copy().
Unused since its introduction in f59fd15c49
.
This commit is contained in:
parent
160969d970
commit
76236f0db2
|
@ -292,9 +292,7 @@ class BaseExpression:
|
||||||
return clone
|
return clone
|
||||||
|
|
||||||
def copy(self):
|
def copy(self):
|
||||||
c = copy.copy(self)
|
return copy.copy(self)
|
||||||
c.copied = True
|
|
||||||
return c
|
|
||||||
|
|
||||||
def get_group_by_cols(self):
|
def get_group_by_cols(self):
|
||||||
if not self.contains_aggregate:
|
if not self.contains_aggregate:
|
||||||
|
|
Loading…
Reference in New Issue