| 1456 | } |
| 1457 | |
| 1458 | Result<std::shared_ptr<Field>> ImportField(struct ArrowSchema* schema) { |
| 1459 | SchemaImporter importer; |
| 1460 | RETURN_NOT_OK(importer.Import(schema)); |
| 1461 | return importer.MakeField(); |
| 1462 | } |
| 1463 | |
| 1464 | Result<std::shared_ptr<Schema>> ImportSchema(struct ArrowSchema* schema) { |
| 1465 | SchemaImporter importer; |