| 126 | } |
| 127 | |
| 128 | static void StringConversion(benchmark::State& state) { // NOLINT non-const reference |
| 129 | auto parser = BuildStringData(num_rows); |
| 130 | auto options = ConvertOptions::Defaults(); |
| 131 | |
| 132 | BenchmarkConversion(state, *parser, utf8(), options); |
| 133 | } |
| 134 | |
| 135 | static void TimestampConversionDefault( |
| 136 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected