[FE] [BUG] GroupingFunctionCallExpr: realChildren should be copied too. (#5584)
This commit is contained in:
@ -49,6 +49,9 @@ public class GroupingFunctionCallExpr extends FunctionCallExpr {
|
||||
public GroupingFunctionCallExpr(GroupingFunctionCallExpr other) {
|
||||
super(other);
|
||||
this.childrenReseted = other.childrenReseted;
|
||||
if (this.childrenReseted) {
|
||||
this.realChildren = Expr.cloneList(other.realChildren);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user