| 26 | BackupEntryFromImmutableFile::~BackupEntryFromImmutableFile() = default; |
| 27 | |
| 28 | std::unique_ptr<SeekableReadBuffer> BackupEntryFromImmutableFile::getReadBuffer(const ReadSettings & read_settings) const |
| 29 | { |
| 30 | if (copy_encrypted) |
| 31 | return disk->readEncryptedFile(file_path, read_settings); |
| 32 | return disk->readFile(file_path, read_settings); |
| 33 | } |
| 34 | |
| 35 | UInt64 BackupEntryFromImmutableFile::getSize() const |
| 36 | { |
nothing calls this directly
no test coverage detected