[[arrow::export]]
| 78 | |
| 79 | // [[arrow::export]] |
| 80 | std::shared_ptr<arrow::Table> Table__RenameColumns( |
| 81 | const std::shared_ptr<arrow::Table>& table, const std::vector<std::string>& names) { |
| 82 | return ValueOrStop(table->RenameColumns(names)); |
| 83 | } |
| 84 | |
| 85 | // [[arrow::export]] |
| 86 | std::shared_ptr<arrow::Table> Table__Slice1(const std::shared_ptr<arrow::Table>& table, |
no test coverage detected