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

Function ExportField

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

Source from the content-addressed store, hash-verified

513}
514
515Status ExportField(const Field& field, struct ArrowSchema* out) {
516 SchemaExporter exporter;
517 RETURN_NOT_OK(exporter.ExportField(field));
518 exporter.Finish(out);
519 return Status::OK();
520}
521
522Status ExportSchema(const Schema& schema, struct ArrowSchema* out) {
523 SchemaExporter exporter;

Callers 2

TEST_FFunction · 0.70
garrow_field_exportFunction · 0.50

Calls 3

ExportFieldMethod · 0.80
OKFunction · 0.50
FinishMethod · 0.45

Tested by 1

TEST_FFunction · 0.56