[[arrow::export]]
| 106 | |
| 107 | // [[arrow::export]] |
| 108 | std::shared_ptr<arrow::RecordBatch> RecordBatch__AddColumn( |
| 109 | const std::shared_ptr<arrow::RecordBatch>& batch, int i, |
| 110 | const std::shared_ptr<arrow::Field>& field, |
| 111 | const std::shared_ptr<arrow::Array>& column) { |
| 112 | return ValueOrStop(batch->AddColumn(i, field, column)); |
| 113 | } |
| 114 | |
| 115 | // [[arrow::export]] |
| 116 | std::shared_ptr<arrow::RecordBatch> RecordBatch__SetColumn( |
no test coverage detected