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

Method PrintVerboseMetadata

cpp/src/arrow/pretty_print.cc:585–591  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

583 Status PrintField(const Field& field);
584
585 void PrintVerboseMetadata(const KeyValueMetadata& metadata) {
586 for (int64_t i = 0; i < metadata.size(); ++i) {
587 Newline();
588 Indent();
589 Write(metadata.key(i) + ": '" + metadata.value(i) + "'");
590 }
591 }
592
593 void PrintTruncatedMetadata(const KeyValueMetadata& metadata) {
594 for (int64_t i = 0; i < metadata.size(); ++i) {

Callers

nothing calls this directly

Calls 4

WriteFunction · 0.85
sizeMethod · 0.45
keyMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected