| 141 | } |
| 142 | |
| 143 | void ChunkResolver::ResolveManyImpl(int64_t n_indices, const uint8_t* logical_index_vec, |
| 144 | TypedChunkLocation<uint8_t>* out_chunk_location_vec, |
| 145 | int32_t chunk_hint) const { |
| 146 | ResolveManyInline(static_cast<uint32_t>(offsets_.size()), offsets_.data(), n_indices, |
| 147 | logical_index_vec, out_chunk_location_vec, chunk_hint); |
| 148 | } |
| 149 | |
| 150 | void ChunkResolver::ResolveManyImpl(int64_t n_indices, const uint16_t* logical_index_vec, |
| 151 | TypedChunkLocation<uint16_t>* out_chunk_location_vec, |
nothing calls this directly
no test coverage detected