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

Function ExportType

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

Source from the content-addressed store, hash-verified

506} // namespace
507
508Status ExportType(const DataType& type, struct ArrowSchema* out) {
509 SchemaExporter exporter;
510 RETURN_NOT_OK(exporter.ExportType(type));
511 exporter.Finish(out);
512 return Status::OK();
513}
514
515Status ExportField(const Field& field, struct ArrowSchema* out) {
516 SchemaExporter exporter;

Callers 8

TestWithTypeFactoryMethod · 0.70
TestWithArrayFactoryMethod · 0.70
TestWithArrayFactoryMethod · 0.70
ExportArrayFunction · 0.70
ExportDeviceArrayFunction · 0.70
ExportStreamSchemaFunction · 0.70
garrow_data_type_exportFunction · 0.50
TestWithArrayFactoryMethod · 0.50

Calls 3

ExportTypeMethod · 0.80
OKFunction · 0.50
FinishMethod · 0.45

Tested by 4

TestWithTypeFactoryMethod · 0.56
TestWithArrayFactoryMethod · 0.56
TestWithArrayFactoryMethod · 0.56
TestWithArrayFactoryMethod · 0.40