提交 0c50f30b 编写于 作者: O obdev 提交者: wangzelin.wzl

[CP] [to #43172849] ignore OB_TIER_END in dbms_job_utils

上级 a9c4677e
......@@ -363,7 +363,9 @@ int ObDBMSJobUtils::get_dbms_job_infos_in_tenant(
} else if (OB_NOT_NULL(result.get_result())) {
do {
if (OB_FAIL(result.get_result()->next())) {
LOG_WARN("failed to get result", K(ret));
if (ret != OB_ITER_END) {
LOG_WARN("failed to get result from result", K(ret));
}
} else {
ObDBMSJobInfo job_info;
OZ (extract_info(*(result.get_result()), allocator, job_info));
......
......@@ -262,9 +262,9 @@ int ObExprToOutfileRow::print_field(char *buf, const int64_t buf_len, int64_t &p
OZ(copy_string_to_buf(buf, buf_len, pos, code_point));
} else {
OZ(copy_string_to_buf(buf, buf_len, pos, code_point));
}
return ret;
};
}
return ret;
};
ObString tmp_str(out_info.tmp_buf_len_, tmp_pos, out_info.tmp_buf_);
OZ(ObCharsetUtils::foreach_char(tmp_str, out_info.print_params_.cs_type_, escape_func));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册