[[arrow::export]]
| 114 | |
| 115 | // [[arrow::export]] |
| 116 | std::shared_ptr<arrow::RecordBatch> RecordBatch__SetColumn( |
| 117 | const std::shared_ptr<arrow::RecordBatch>& batch, int i, |
| 118 | const std::shared_ptr<arrow::Field>& field, |
| 119 | const std::shared_ptr<arrow::Array>& column) { |
| 120 | return ValueOrStop(batch->SetColumn(i, field, column)); |
| 121 | } |
| 122 | |
| 123 | // [[arrow::export]] |
| 124 | std::shared_ptr<arrow::RecordBatch> RecordBatch__RemoveColumn( |
no test coverage detected