| 30 | |
| 31 | |
| 32 | BackupEntryFromSmallFile::BackupEntryFromSmallFile(const String & file_path_, const ReadSettings & read_settings_) |
| 33 | : file_path(file_path_) |
| 34 | , data_source_description(DiskLocal::getLocalDataSourceDescription(file_path_)) |
| 35 | , data(readFile(file_path_, read_settings_)) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | BackupEntryFromSmallFile::BackupEntryFromSmallFile(const DiskPtr & disk_, const String & file_path_, const ReadSettings & read_settings_, bool copy_encrypted_) |
| 40 | : disk(disk_) |
nothing calls this directly
no test coverage detected