add rpc flag

This commit is contained in:
hamstersox
2022-11-15 09:35:31 +00:00
committed by wangzelin.wzl
parent dfba79d833
commit 085f9a7c6c
2 changed files with 4 additions and 3 deletions

View File

@ -280,9 +280,9 @@ int ObExprToOutfileRow::print_wchar_to_buf(char *buf, const int64_t buf_len, int
int ret = OB_SUCCESS;
int result_len = 0;
if (OB_FAIL(ObCharset::wc_mb(coll_type, wchar, buf + pos, buf_len - pos, result_len))) {
LOG_WARN("failed to convert wc to mb");
} else {
pos += result_len;
LOG_WARN("failed to convert wc to mb");
} else {
pos += result_len;
}
return ret;
}