Merge pull request from GitHub pr175

This commit is contained in:
LINxiansheng
2021-08-11 17:50:35 +08:00
committed by wangzelin.wzl
parent 99f2835249
commit 58f7fb882e
14 changed files with 800 additions and 7 deletions

View File

@ -234,9 +234,12 @@ int ObStaticEngineCG::postorder_generate_op(
}
if (is_subplan) {
cur_op_exprs_.reset();
cur_op_exprs_.assign(tmp_cur_op_exprs);
cur_op_self_produced_exprs_.reset();
cur_op_self_produced_exprs_.assign(tmp_cur_op_self_produced_exprs);
if (OB_FAIL(cur_op_exprs_.assign(tmp_cur_op_exprs))) {
LOG_WARN("assign exprs failed", K(ret));
} else if (OB_FAIL(cur_op_self_produced_exprs_.assign(tmp_cur_op_self_produced_exprs))) {
LOG_WARN("assign exprs failed", K(ret));
}
}
return ret;