| 90 | |
| 91 | template <typename ArrayType> |
| 92 | auto GetLogicalValue(const ArrayType& array, |
| 93 | uint64_t index) -> decltype(array.GetView(index)) { |
| 94 | return array.GetView(index); |
| 95 | } |
| 96 | |
| 97 | Decimal128 GetLogicalValue(const Decimal128Array& array, uint64_t index) { |
| 98 | return Decimal128(array.Value(index)); |
no test coverage detected