| 133 | } |
| 134 | |
| 135 | static void TimestampConversionDefault( |
| 136 | benchmark::State& state) { // NOLINT non-const reference |
| 137 | auto parser = BuildISO8601Data(num_rows); |
| 138 | auto options = ConvertOptions::Defaults(); |
| 139 | BenchmarkConversion(state, *parser, timestamp(TimeUnit::MILLI), options); |
| 140 | } |
| 141 | |
| 142 | static void TimestampConversionStrptime( |
| 143 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected