add the jdbc_test configure file

This commit is contained in:
obdev
2022-11-14 09:40:37 +00:00
committed by wangzelin.wzl
parent ff0c30bc5d
commit a74951f7fb

View File

@ -208,9 +208,9 @@ int ObExprToOutfileRow::extract_fisrt_wchar_from_varhcar(const ObObj &obj, int32
{
int ret = OB_SUCCESS;
int32_t length = 0;
if (obj.is_varying_len_char_type()) {
ObString str = obj.get_varchar();
if (str.length() > 0) {
if (obj.is_varying_len_char_type()) {
ObString str = obj.get_varchar();
if (str.length() > 0) {
ret = ObCharset::mb_wc(obj.get_collation_type(), str.ptr(), str.length(), length, wchar);
}
}