| 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", |
| 83 | "9/5/1945\n"}; |
| 84 | return BuildFromExamples(base_rows, num_rows); |
| 85 | } |
| 86 | |
| 87 | static void BenchmarkConversion(benchmark::State& state, // NOLINT non-const reference |
| 88 | BlockParser& parser, |
no test coverage detected