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

Method ToDotString

cpp/src/parquet/schema.cc:95–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93}
94
95std::string ColumnPath::ToDotString() const {
96 std::stringstream ss;
97 for (auto it = path_.cbegin(); it != path_.cend(); ++it) {
98 if (it != path_.cbegin()) {
99 ss << ".";
100 }
101 ss << *it;
102 }
103 return ss.str();
104}
105
106const std::vector<std::string>& ColumnPath::ToDotVector() const { return path_; }
107

Callers 15

StartFileMethod · 0.80
FinishMethod · 0.80
BuildTreeMethod · 0.80
ColumnIndexMethod · 0.80
ToStringMethod · 0.80
enable_dictionaryFunction · 0.80
disable_dictionaryFunction · 0.80
encodingFunction · 0.80
compressionFunction · 0.80
compression_levelFunction · 0.80

Calls 3

cbeginMethod · 0.80
cendMethod · 0.80
strMethod · 0.80

Tested by 3

TESTFunction · 0.64
TEST_FFunction · 0.64
TESTFunction · 0.64