| 355 | } |
| 356 | |
| 357 | void RowBatch::FreeBuffers() { |
| 358 | for (BufferInfo& buffer_info : buffers_) { |
| 359 | ExecEnv::GetInstance()->buffer_pool()->FreeBuffer( |
| 360 | buffer_info.client, &buffer_info.buffer); |
| 361 | } |
| 362 | buffers_.clear(); |
| 363 | } |
| 364 | |
| 365 | void RowBatch::Reset() { |
| 366 | num_rows_ = 0; |
nothing calls this directly
no test coverage detected