| 1324 | : values(values), array_type(array_type) {} |
| 1325 | |
| 1326 | Result<std::shared_ptr<Array>> operator()(const bool&) { |
| 1327 | auto raw_values = StatisticsValuesToRawValues<bool>(values); |
| 1328 | return BuildArray<BooleanType>(raw_values); |
| 1329 | } |
| 1330 | Result<std::shared_ptr<Array>> operator()(const int64_t&) { |
| 1331 | auto raw_values = StatisticsValuesToRawValues<int64_t>(values); |
| 1332 | return BuildArray<Int64Type>(raw_values); |
nothing calls this directly
no test coverage detected