| 54 | } |
| 55 | |
| 56 | std::vector<std::shared_ptr<TempFilePath>> writeToFiles( |
| 57 | const std::vector<RowVectorPtr>& vectors) { |
| 58 | auto filePaths = makeFilePaths(vectors.size()); |
| 59 | for (auto i = 0; i < vectors.size(); i++) { |
| 60 | writeToFile(filePaths[i]->path, vectors[i]); |
| 61 | } |
| 62 | return filePaths; |
| 63 | } |
| 64 | |
| 65 | void verifyExchangeSourceOperatorStats( |
| 66 | const std::shared_ptr<exec::Task>& task, |
nothing calls this directly
no test coverage detected