| 117 | } |
| 118 | |
| 119 | std::unique_ptr<ReadBufferFromFileBase> IDisk::readEncryptedFile(const String &, const ReadSettings &) const |
| 120 | { |
| 121 | throw Exception(ErrorCodes::NOT_IMPLEMENTED, "File encryption is not implemented for disk of type {}", getDataSourceDescription().type); |
| 122 | } |
| 123 | |
| 124 | std::unique_ptr<WriteBufferFromFileBase> IDisk::writeEncryptedFile(const String &, size_t, WriteMode, const WriteSettings &) const |
| 125 | { |
no test coverage detected