| 118 | } |
| 119 | |
| 120 | RowVectorPtr makeRowVector( |
| 121 | const std::vector<std::string>& childNames, |
| 122 | const std::vector<VectorPtr>& children, |
| 123 | std::function<bool(vector_size_t /*row*/)> isNullAt = nullptr) { |
| 124 | auto rowVector = vectorMaker_.rowVector(childNames, children); |
| 125 | if (isNullAt) { |
| 126 | setNulls(rowVector, isNullAt); |
| 127 | } |
| 128 | return rowVector; |
| 129 | } |
| 130 | |
| 131 | RowVectorPtr makeRowVector( |
| 132 | const std::vector<VectorPtr>& children, |
no test coverage detected