| 1462 | } |
| 1463 | |
| 1464 | Result<std::shared_ptr<Schema>> ImportSchema(struct ArrowSchema* schema) { |
| 1465 | SchemaImporter importer; |
| 1466 | RETURN_NOT_OK(importer.Import(schema)); |
| 1467 | return importer.MakeSchema(); |
| 1468 | } |
| 1469 | |
| 1470 | ////////////////////////////////////////////////////////////////////////// |
| 1471 | // C data import |