| 1225 | } |
| 1226 | |
| 1227 | int 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 |