[[arrow::export]]
| 22 | |
| 23 | // [[arrow::export]] |
| 24 | std::shared_ptr<arrow::Field> Field__initialize( |
| 25 | const std::string& name, const std::shared_ptr<arrow::DataType>& field, |
| 26 | bool nullable = true) { |
| 27 | return arrow::field(name, field, nullable); |
| 28 | } |
| 29 | |
| 30 | // [[arrow::export]] |
| 31 | std::string Field__ToString(const std::shared_ptr<arrow::Field>& field) { |
no test coverage detected