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

Function GetOrcMajorVersion

cpp/src/arrow/adapters/orc/util.cc:1227–1232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1225}
1226
1227int GetOrcMajorVersion() {
1228 std::stringstream orc_version(ORC_VERSION);
1229 std::string major_version;
1230 std::getline(orc_version, major_version, '.');
1231 return std::stoi(major_version);
1232}
1233
1234} // namespace orc
1235} // namespace adapters

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68