to issue<54566685>:fix core when destruct spicursor

This commit is contained in:
hanr881
2024-01-17 17:42:12 +00:00
committed by ob-robot
parent 3dbaf2e03d
commit f205e6fc3f

View File

@ -44,9 +44,11 @@ class ObExprObjAccess;
struct ObSPICursor
{
ObSPICursor(ObIAllocator &allocator) :
row_store_(), row_desc_(), allocator_(&allocator), cur_(0), fields_(allocator)
row_store_(), row_desc_(), allocator_(&allocator), cur_(0), fields_(allocator), complex_objs_()
{
row_desc_.set_tenant_id(MTL_ID());
complex_objs_.reset();
complex_objs_.set_tenant_id(MTL_ID());
}
~ObSPICursor()