| 477 | } |
| 478 | |
| 479 | Status TableToTensor(const Table& table, bool null_to_nan, bool row_major, |
| 480 | MemoryPool* pool, std::shared_ptr<Tensor>* tensor) { |
| 481 | return ToTensorImpl(table, null_to_nan, row_major, pool, tensor); |
| 482 | } |
| 483 | |
| 484 | Status RecordBatchToTensor(const RecordBatch& batch, bool null_to_nan, bool row_major, |
| 485 | MemoryPool* pool, std::shared_ptr<Tensor>* tensor) { |
no test coverage detected