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

@ -805,6 +805,7 @@ PCODE_DEF(OB_CHECK_BACKUP_DEST_CONNECTIVITY, 0x1423)
PCODE_DEF(OB_BACKUP_META, 0x1424) PCODE_DEF(OB_BACKUP_META, 0x1424)
PCODE_DEF(OB_BACKUP_CHECK_TABLET_CREATE_TS, 0x1425) PCODE_DEF(OB_BACKUP_CHECK_TABLET_CREATE_TS, 0x1425)
PCODE_DEF(OB_DELETE_POLICY, 0x1426) PCODE_DEF(OB_DELETE_POLICY, 0x1426)
// 0x1427 for OB_RECOVER_TABLE
// backup and restore end 0x14ff // backup and restore end 0x14ff
// logservice // logservice

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 ret = OB_SUCCESS;
int result_len = 0; int result_len = 0;
if (OB_FAIL(ObCharset::wc_mb(coll_type, wchar, buf + pos, buf_len - pos, result_len))) { if (OB_FAIL(ObCharset::wc_mb(coll_type, wchar, buf + pos, buf_len - pos, result_len))) {
LOG_WARN("failed to convert wc to mb"); LOG_WARN("failed to convert wc to mb");
} else { } else {
pos += result_len; pos += result_len;
} }
return ret; return ret;
} }