| 119 | } |
| 120 | |
| 121 | static void Decimal128Conversion(benchmark::State& state) { // NOLINT non-const reference |
| 122 | auto parser = BuildDecimal128Data(num_rows); |
| 123 | auto options = ConvertOptions::Defaults(); |
| 124 | |
| 125 | BenchmarkConversion(state, *parser, decimal128(24, 9), options); |
| 126 | } |
| 127 | |
| 128 | static void StringConversion(benchmark::State& state) { // NOLINT non-const reference |
| 129 | auto parser = BuildStringData(num_rows); |
nothing calls this directly
no test coverage detected