| 717 | |
| 718 | template <typename T> |
| 719 | ::arrow::enable_if_t<std::is_base_of<::arrow::FlatArray, T>::value, Status> Visit( |
| 720 | const T& array) { |
| 721 | AddTerminalInfo(array); |
| 722 | return Status::OK(); |
| 723 | } |
| 724 | |
| 725 | template <typename T> |
| 726 | ::arrow::enable_if_t<std::is_same<::arrow::ListArray, T>::value || |
nothing calls this directly
no test coverage detected