fix update_memtables in table store when creating new memtable

This commit is contained in:
obdev
2022-11-15 09:42:38 +00:00
committed by wangzelin.wzl
parent f03ae01734
commit efbed6ee8a
2 changed files with 20 additions and 17 deletions

View File

@ -289,9 +289,9 @@ int ObExprToOutfileRow::print_wchar_to_buf(char *buf, const int64_t buf_len, int
int ObExprToOutfileRow::copy_string_to_buf(char *buf, const int64_t buf_len, int64_t &pos,
const ObString &str)
{
return databuff_memcpy(buf, buf_len, pos, str.length(), str.ptr());
}
{
return databuff_memcpy(buf, buf_len, pos, str.length(), str.ptr());
}
}
}