| 513 | } |
| 514 | |
| 515 | Status ExportField(const Field& field, struct ArrowSchema* out) { |
| 516 | SchemaExporter exporter; |
| 517 | RETURN_NOT_OK(exporter.ExportField(field)); |
| 518 | exporter.Finish(out); |
| 519 | return Status::OK(); |
| 520 | } |
| 521 | |
| 522 | Status ExportSchema(const Schema& schema, struct ArrowSchema* out) { |
| 523 | SchemaExporter exporter; |