| 1457 | } |
| 1458 | |
| 1459 | Result<std::shared_ptr<Schema>> ImportSchema(struct ArrowSchema* schema) { |
| 1460 | SchemaImporter importer; |
| 1461 | RETURN_NOT_OK(importer.Import(schema)); |
| 1462 | return importer.MakeSchema(); |
| 1463 | } |
| 1464 | |
| 1465 | ////////////////////////////////////////////////////////////////////////// |
| 1466 | // C data import |