| 85 | } |
| 86 | |
| 87 | void InsertChunk(std::vector<std::string> chunk) { |
| 88 | std::shared_ptr<BlockParser> parser; |
| 89 | MakeColumnParser(chunk, &parser); |
| 90 | auto decoded = decoder_->Decode(parser); |
| 91 | decoded_chunks_.push_back(decoded); |
| 92 | ++num_chunks_; |
| 93 | } |
| 94 | |
| 95 | void AppendChunks(const ChunkData& chunks) { |
| 96 | for (const auto& chunk : chunks) { |
nothing calls this directly
no test coverage detected