| 322 | } |
| 323 | |
| 324 | void CheckSparseCSXIndexValidity(const std::shared_ptr<DataType>& indptr_type, |
| 325 | const std::shared_ptr<DataType>& indices_type, |
| 326 | const std::vector<int64_t>& indptr_shape, |
| 327 | const std::vector<int64_t>& indices_shape, |
| 328 | const char* type_name) { |
| 329 | ARROW_CHECK_OK(ValidateSparseCSXIndex(indptr_type, indices_type, indptr_shape, |
| 330 | indices_shape, type_name)); |
| 331 | } |
| 332 | |
| 333 | } // namespace internal |
| 334 |
no test coverage detected