提交 73ef48ed 编写于 作者: H Handora 提交者: wangzelin.wzl

[BUG] report error when 4013 for assign participants

上级 d63bdbd2
...@@ -80,7 +80,6 @@ int RowDesc::add_column(ObRawExpr *raw_expr) ...@@ -80,7 +80,6 @@ int RowDesc::add_column(ObRawExpr *raw_expr)
SQL_CG_LOG(WARN, "failed to get hashmap", K(ret)); SQL_CG_LOG(WARN, "failed to get hashmap", K(ret));
} }
} }
if (OB_SUCC(ret) && !raw_expr->has_flag(IS_COLUMNLIZED) if (OB_SUCC(ret) && !raw_expr->has_flag(IS_COLUMNLIZED)
&& OB_FAIL(raw_expr->add_flag(IS_COLUMNLIZED))) { && OB_FAIL(raw_expr->add_flag(IS_COLUMNLIZED))) {
SQL_CG_LOG(WARN, "failed to add flag", K(ret)); SQL_CG_LOG(WARN, "failed to add flag", K(ret));
......
...@@ -367,7 +367,9 @@ int ObPartTransCtx::set_2pc_participants_(const ObLSArray &participants) ...@@ -367,7 +367,9 @@ int ObPartTransCtx::set_2pc_participants_(const ObLSArray &participants)
{ {
int ret = OB_SUCCESS; int ret = OB_SUCCESS;
exec_info_.participants_ = participants; if (OB_FAIL(exec_info_.participants_.assign(participants))) {
TRANS_LOG(WARN, "set participants error", K(ret), K(participants), KPC(this));
}
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册