| 506 | } // namespace |
| 507 | |
| 508 | Status ExportType(const DataType& type, struct ArrowSchema* out) { |
| 509 | SchemaExporter exporter; |
| 510 | RETURN_NOT_OK(exporter.ExportType(type)); |
| 511 | exporter.Finish(out); |
| 512 | return Status::OK(); |
| 513 | } |
| 514 | |
| 515 | Status ExportField(const Field& field, struct ArrowSchema* out) { |
| 516 | SchemaExporter exporter; |