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

Method Visit

cpp/src/parquet/schema.cc:698–706  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

696 }
697
698 void Visit(const Node* node) {
699 Indent();
700 if (node->is_group()) {
701 Visit(static_cast<const GroupNode*>(node));
702 } else {
703 // Primitive
704 Visit(static_cast<const PrimitiveNode*>(node));
705 }
706 }
707
708 void Visit(const PrimitiveNode* node) {
709 PrintRepLevel(node->repetition(), stream_);

Callers

nothing calls this directly

Calls 11

PrintRepLevelFunction · 0.85
PrintTypeFunction · 0.85
PrintConvertedTypeFunction · 0.85
ConvertedTypeToStringFunction · 0.85
is_noneMethod · 0.80
VisitConstMethod · 0.80
VisitFunction · 0.50
nameMethod · 0.45
is_validMethod · 0.45
ToStringMethod · 0.45
fieldMethod · 0.45

Tested by

no test coverage detected