| 73 | const std::vector<std::string> strptime_rows = {"10/17/1917", "9/13/2018", "9/5/1945"}; |
| 74 | |
| 75 | static void WriteHeader(std::ostream& writer) { |
| 76 | writer << "Int64,Float,Decimal128,ISO8601,Strptime" << std::endl; |
| 77 | } |
| 78 | |
| 79 | static std::string GetCell(const std::vector<std::string>& base_rows, size_t row_index) { |
| 80 | return base_rows[row_index % base_rows.size()]; |
no outgoing calls
no test coverage detected