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

Method PrintMetadata

cpp/src/arrow/pretty_print.cc:609–620  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

607 }
608
609 void PrintMetadata(const std::string& metadata_type, const KeyValueMetadata& metadata) {
610 if (metadata.size() > 0) {
611 Newline();
612 Indent();
613 Write(metadata_type);
614 if (options_.truncate_metadata) {
615 PrintTruncatedMetadata(metadata);
616 } else {
617 PrintVerboseMetadata(metadata);
618 }
619 }
620 }
621
622 Status Print() {
623 for (int i = 0; i < schema_.num_fields(); ++i) {

Callers

nothing calls this directly

Calls 2

WriteFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected