| 140 | } |
| 141 | |
| 142 | static void TimestampConversionStrptime( |
| 143 | benchmark::State& state) { // NOLINT non-const reference |
| 144 | auto parser = BuildStrptimeData(num_rows); |
| 145 | auto options = ConvertOptions::Defaults(); |
| 146 | options.timestamp_parsers.push_back(TimestampParser::MakeStrptime("%m/%d/%Y")); |
| 147 | BenchmarkConversion(state, *parser, timestamp(TimeUnit::MILLI), options); |
| 148 | } |
| 149 | |
| 150 | BENCHMARK(Int64Conversion); |
| 151 | BENCHMARK(FloatConversion); |
nothing calls this directly
no test coverage detected