| 333 | |
| 334 | template <typename T> |
| 335 | ::arrow::enable_if_t<std::is_integral<T>::value, optional<std::pair<T, T>>> |
| 336 | CleanStatistic(std::pair<T, T> min_max, LogicalType::Type::type) { |
| 337 | return min_max; |
| 338 | } |
| 339 | |
| 340 | std::optional<std::pair<Int96, Int96>> CleanStatistic(std::pair<Int96, Int96> min_max, |
| 341 | LogicalType::Type::type) { |
no test coverage detected