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

Function ImportField

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

Source from the content-addressed store, hash-verified

1456}
1457
1458Result<std::shared_ptr<Field>> ImportField(struct ArrowSchema* schema) {
1459 SchemaImporter importer;
1460 RETURN_NOT_OK(importer.Import(schema));
1461 return importer.MakeField();
1462}
1463
1464Result<std::shared_ptr<Schema>> ImportSchema(struct ArrowSchema* schema) {
1465 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