| 73 | } |
| 74 | |
| 75 | static std::shared_ptr<BlockParser> BuildISO8601Data(int32_t num_rows) { |
| 76 | const std::vector<std::string> base_rows = { |
| 77 | "1917-10-17\n", "2018-09-13\n", "1941-06-22 04:00\n", "1945-05-09 09:45:38\n"}; |
| 78 | return BuildFromExamples(base_rows, num_rows); |
| 79 | } |
| 80 | |
| 81 | static std::shared_ptr<BlockParser> BuildStrptimeData(int32_t num_rows) { |
| 82 | const std::vector<std::string> base_rows = {"10/17/1917\n", "9/13/2018\n", |
no test coverage detected