| 32 | namespace { |
| 33 | template <typename T> |
| 34 | int64_t GetLength(const T& array) { |
| 35 | // General case assumes argument is an Array pointer |
| 36 | return array->length(); |
| 37 | } |
| 38 | |
| 39 | template <> |
| 40 | int64_t GetLength<std::shared_ptr<RecordBatch>>( |
no test coverage detected