| 1451 | } |
| 1452 | |
| 1453 | Result<std::shared_ptr<Field>> ImportField(struct ArrowSchema* schema) { |
| 1454 | SchemaImporter importer; |
| 1455 | RETURN_NOT_OK(importer.Import(schema)); |
| 1456 | return importer.MakeField(); |
| 1457 | } |
| 1458 | |
| 1459 | Result<std::shared_ptr<Schema>> ImportSchema(struct ArrowSchema* schema) { |
| 1460 | SchemaImporter importer; |