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

Function ParquetVersionToString

cpp/src/parquet/metadata.cc:78–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78std::string ParquetVersionToString(ParquetVersion::type ver) {
79 switch (ver) {
80 case ParquetVersion::PARQUET_1_0:
81 return "1.0";
82 ARROW_SUPPRESS_DEPRECATION_WARNING
83 case ParquetVersion::PARQUET_2_4:
84 return "2.4";
85 case ParquetVersion::PARQUET_2_6:
86 return "2.6";
87 }
88
89 // This should be unreachable
90 return "UNKNOWN";
91}
92
93template <typename DType>
94static std::shared_ptr<Statistics> MakeTypedColumnStats(

Callers 4

DebugPrintMethod · 0.85
JSONPrintMethod · 0.85
GetTimestampMetadataFunction · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68