[[arrow::export]]
| 138 | |
| 139 | // [[arrow::export]] |
| 140 | std::shared_ptr<arrow::Schema> Schema__WithMetadata( |
| 141 | const std::shared_ptr<arrow::Schema>& schema, cpp11::strings metadata) { |
| 142 | auto kv = strings_to_kvm(metadata); |
| 143 | return schema->WithMetadata(std::move(kv)); |
| 144 | } |
| 145 | |
| 146 | // [[arrow::export]] |
| 147 | std::shared_ptr<arrow::Schema> Schema__WithNames( |
no test coverage detected