[[arrow::export]]
| 220 | |
| 221 | // [[arrow::export]] |
| 222 | std::shared_ptr<arrow::StructArray> StructArray__from_RecordBatch( |
| 223 | const std::shared_ptr<arrow::RecordBatch>& batch) { |
| 224 | return ValueOrStop( |
| 225 | arrow::StructArray::Make(batch->columns(), batch->schema()->field_names())); |
| 226 | } |
| 227 | |
| 228 | // [[arrow::export]] |
| 229 | cpp11::list StructArray__Flatten(const std::shared_ptr<arrow::StructArray>& array) { |
no test coverage detected