| 81 | } |
| 82 | |
| 83 | static void WriteRow(std::ostream& writer, size_t row_index) { |
| 84 | writer << GetCell(int64_rows, row_index); |
| 85 | writer << ','; |
| 86 | writer << GetCell(float_rows, row_index); |
| 87 | writer << ','; |
| 88 | writer << GetCell(decimal128_rows, row_index); |
| 89 | writer << ','; |
| 90 | writer << GetCell(iso8601_rows, row_index); |
| 91 | writer << ','; |
| 92 | writer << GetCell(strptime_rows, row_index); |
| 93 | writer << std::endl; |
| 94 | } |
| 95 | |
| 96 | static void WriteInvalidRow(std::ostream& writer, size_t row_index) { |
| 97 | writer << "\"" << std::endl << "\""; |
no test coverage detected