fix external table iter memleak

This commit is contained in:
wjhh2008
2023-05-09 03:08:39 +00:00
committed by ob-robot
parent c22ebcba79
commit e6af7509a0

View File

@ -303,6 +303,9 @@ int ObExternalTableAccessService::revert_scan_iter(ObNewRowIterator *iter)
ObCSVTableRowIterator::~ObCSVTableRowIterator()
{
release_buf();
if (nullptr != bit_vector_cache_) {
allocator_.free(bit_vector_cache_);
}
}
void ObCSVTableRowIterator::release_buf()