| 338 | } |
| 339 | |
| 340 | void CheckSparseCSXIndexValidity(const std::shared_ptr<DataType>& indptr_type, |
| 341 | const std::shared_ptr<DataType>& indices_type, |
| 342 | const std::vector<int64_t>& indptr_shape, |
| 343 | const std::vector<int64_t>& indices_shape, |
| 344 | const char* type_name) { |
| 345 | ARROW_CHECK_OK(ValidateSparseCSXIndex(indptr_type, indices_type, indptr_shape, |
| 346 | indices_shape, type_name)); |
| 347 | } |
| 348 | |
| 349 | } // namespace internal |
| 350 |
no test coverage detected