| 1450 | } // namespace |
| 1451 | |
| 1452 | Result<std::shared_ptr<DataType>> ImportType(struct ArrowSchema* schema) { |
| 1453 | SchemaImporter importer; |
| 1454 | RETURN_NOT_OK(importer.Import(schema)); |
| 1455 | return importer.MakeType(); |
| 1456 | } |
| 1457 | |
| 1458 | Result<std::shared_ptr<Field>> ImportField(struct ArrowSchema* schema) { |
| 1459 | SchemaImporter importer; |