| 12 | namespace |
| 13 | { |
| 14 | String readFile(const String & file_path, const ReadSettings & read_settings) |
| 15 | { |
| 16 | auto buf = createReadBufferFromFileBase(file_path, read_settings); |
| 17 | String s; |
| 18 | readStringUntilEOF(s, *buf); |
| 19 | return s; |
| 20 | } |
| 21 | |
| 22 | String readFile(const DiskPtr & disk, const String & file_path, const ReadSettings & read_settings, bool copy_encrypted) |
| 23 | { |
no test coverage detected