| 112 | } |
| 113 | |
| 114 | static void FloatConversion(benchmark::State& state) { // NOLINT non-const reference |
| 115 | auto parser = BuildFloatData(num_rows); |
| 116 | auto options = ConvertOptions::Defaults(); |
| 117 | |
| 118 | BenchmarkConversion(state, *parser, float64(), options); |
| 119 | } |
| 120 | |
| 121 | static void Decimal128Conversion(benchmark::State& state) { // NOLINT non-const reference |
| 122 | auto parser = BuildDecimal128Data(num_rows); |
nothing calls this directly
no test coverage detected