[[arrow::export]]
| 137 | |
| 138 | // [[arrow::export]] |
| 139 | std::shared_ptr<arrow::Table> Table__SetColumn( |
| 140 | const std::shared_ptr<arrow::Table>& table, int i, |
| 141 | const std::shared_ptr<arrow::Field>& field, |
| 142 | const std::shared_ptr<arrow::ChunkedArray>& column) { |
| 143 | return ValueOrStop(table->SetColumn(i, field, column)); |
| 144 | } |
| 145 | |
| 146 | // [[arrow::export]] |
| 147 | std::shared_ptr<arrow::Table> Table__SelectColumns( |
no test coverage detected