| 42 | } |
| 43 | |
| 44 | RowVectorPtr VectorMaker::rowVector(const std::vector<VectorPtr>& children) { |
| 45 | std::vector<std::string> names; |
| 46 | for (int32_t i = 0; i < children.size(); ++i) { |
| 47 | names.push_back(fmt::format("c{}", i)); |
| 48 | } |
| 49 | |
| 50 | return rowVector(std::move(names), children); |
| 51 | } |
| 52 | |
| 53 | RowVectorPtr VectorMaker::rowVector( |
| 54 | std::vector<std::string> childNames, |
no test coverage detected