| 1361 | } |
| 1362 | |
| 1363 | Tuple* ScanRangeSharedState::GetTemplateTupleForPartitionId(int64_t partition_id) { |
| 1364 | DCHECK(partition_template_tuple_map_.find(partition_id) |
| 1365 | != partition_template_tuple_map_.end()); |
| 1366 | return partition_template_tuple_map_[partition_id]; |
| 1367 | } |
| 1368 | |
| 1369 | void ScanRangeSharedState::TransferToSharedStatePool(MemPool* pool) { |
| 1370 | unique_lock<mutex> l(metadata_lock_); |
no test coverage detected