[FE] [BUG] GroupingFunctionCallExpr: realChildren should be copied too. (#5584)

This commit is contained in:
曹建华
2021-04-08 09:11:11 +08:00
committed by GitHub
parent 771cb64290
commit 3e34fe2529

View File

@ -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