MCPcopy Create free account
hub / github.com/apache/arrow / ImportField

Function ImportField

cpp/src/arrow/c/bridge.cc:1453–1457  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1451}
1452
1453Result<std::shared_ptr<Field>> ImportField(struct ArrowSchema* schema) {
1454 SchemaImporter importer;
1455 RETURN_NOT_OK(importer.Import(schema));
1456 return importer.MakeField();
1457}
1458
1459Result<std::shared_ptr<Schema>> ImportSchema(struct ArrowSchema* schema) {
1460 SchemaImporter importer;

Callers 3

CheckImportErrorMethod · 0.70
garrow_field_importFunction · 0.50
ImportFieldsMethod · 0.50

Calls 2

ImportMethod · 0.45
MakeFieldMethod · 0.45

Tested by 1

CheckImportErrorMethod · 0.56