| 248 | } |
| 249 | |
| 250 | FileVersion GetFileVersion() { |
| 251 | liborc::FileVersion orc_file_version = reader_->getFormatVersion(); |
| 252 | return FileVersion(orc_file_version.getMajor(), orc_file_version.getMinor()); |
| 253 | } |
| 254 | |
| 255 | Result<Compression::type> GetCompression() { |
| 256 | liborc::CompressionKind orc_compression = reader_->getCompression(); |
nothing calls this directly
no test coverage detected