| 364 | |
| 365 | template <typename T> |
| 366 | ::arrow::enable_if_t<std::is_integral<T>::value, optional<std::pair<T, T>>> |
| 367 | CleanStatistic(std::pair<T, T> min_max, LogicalType::Type::type) { |
| 368 | return min_max; |
| 369 | } |
| 370 | |
| 371 | std::optional<std::pair<Int96, Int96>> CleanStatistic(std::pair<Int96, Int96> min_max, |
| 372 | LogicalType::Type::type) { |
no test coverage detected