| 557 | } |
| 558 | |
| 559 | MaterializedRow getColumns( |
| 560 | const MaterializedRow& row, |
| 561 | const std::vector<uint32_t>& columnIndices) { |
| 562 | MaterializedRow columns; |
| 563 | columns.reserve(columnIndices.size()); |
| 564 | for (auto& index : columnIndices) { |
| 565 | columns.push_back(row[index]); |
| 566 | } |
| 567 | return columns; |
| 568 | } |
| 569 | |
| 570 | void printRow( |
| 571 | const MaterializedRow& row, |
no test coverage detected