| 1280 | : values(values), array_type(array_type) {} |
| 1281 | |
| 1282 | Result<std::shared_ptr<Array>> operator()(const bool&) { |
| 1283 | auto raw_values = StatisticsValuesToRawValues<bool>(values); |
| 1284 | return BuildArray<BooleanType>(raw_values); |
| 1285 | } |
| 1286 | Result<std::shared_ptr<Array>> operator()(const int64_t&) { |
| 1287 | auto raw_values = StatisticsValuesToRawValues<int64_t>(values); |
| 1288 | return BuildArray<Int64Type>(raw_values); |
nothing calls this directly
no test coverage detected