[[arrow::export]]
| 129 | |
| 130 | // [[arrow::export]] |
| 131 | std::shared_ptr<arrow::Table> Table__AddColumn( |
| 132 | const std::shared_ptr<arrow::Table>& table, int i, |
| 133 | const std::shared_ptr<arrow::Field>& field, |
| 134 | const std::shared_ptr<arrow::ChunkedArray>& column) { |
| 135 | return ValueOrStop(table->AddColumn(i, field, column)); |
| 136 | } |
| 137 | |
| 138 | // [[arrow::export]] |
| 139 | std::shared_ptr<arrow::Table> Table__SetColumn( |
no test coverage detected