| 1445 | } // namespace |
| 1446 | |
| 1447 | Result<std::shared_ptr<DataType>> ImportType(struct ArrowSchema* schema) { |
| 1448 | SchemaImporter importer; |
| 1449 | RETURN_NOT_OK(importer.Import(schema)); |
| 1450 | return importer.MakeType(); |
| 1451 | } |
| 1452 | |
| 1453 | Result<std::shared_ptr<Field>> ImportField(struct ArrowSchema* schema) { |
| 1454 | SchemaImporter importer; |