Kaydet (Commit) 76236f0d authored tarafından Simon Charette's avatar Simon Charette

Stopped setting BaseExpression.copied on copy().

Unused since its introduction in f59fd15c.
üst 160969d9
......@@ -292,9 +292,7 @@ class BaseExpression:
return clone
def copy(self):
c = copy.copy(self)
c.copied = True
return c
return copy.copy(self)
def get_group_by_cols(self):
if not self.contains_aggregate:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment