Return the read buffer block.
| 375 | |
| 376 | // Return the read buffer block. |
| 377 | MemBlock* GetBufferBlock(int index) { |
| 378 | DCheckReadBufferIdx(index); |
| 379 | return read_buffer_->read_buffer_blocks_[index].get(); |
| 380 | } |
| 381 | |
| 382 | // Return the lock of the read buffer block. |
| 383 | SpinLock* GetBufferBlockLock(int index) { |
no test coverage detected