Fix the bug of reference count in ObTableLoadRowArray

This commit is contained in:
leftgeek
2023-06-09 07:48:09 +00:00
committed by ob-robot
parent 1a4520d891
commit 11f4506bca

View File

@ -113,6 +113,8 @@ int ObTableLoadRowArray<T>::assign(const ObTableLoadRowArray<T> &other)
if (OB_FAIL(array_.assign(other.array_))) {
OB_LOG(WARN, "failed to assign other array", KR(ret));
} else {
allocator_handle_ = other.allocator_handle_;
}
return ret;