MCPcopy Create free account
hub / github.com/bytedance/bolt / testingSpilledFilePaths

Method testingSpilledFilePaths

bolt/exec/Spill.cpp:252–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250}
251
252std::vector<std::string> SpillState::testingSpilledFilePaths() const {
253 std::vector<std::string> spilledFiles;
254 for (const auto& writer : partitionWriters_) {
255 if (writer != nullptr) {
256 const auto partitionSpilledFiles = writer->testingSpilledFilePaths();
257 spilledFiles.insert(
258 spilledFiles.end(),
259 partitionSpilledFiles.begin(),
260 partitionSpilledFiles.end());
261 }
262 }
263 return spilledFiles;
264}
265
266std::vector<uint32_t> SpillState::testingSpilledFileIds(
267 int32_t partitionNum) const {

Callers 3

spillStateTestMethod · 0.45
testSortedSpillMethod · 0.45

Calls 3

insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by 3

spillStateTestMethod · 0.36
testSortedSpillMethod · 0.36