mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Fixed typo
This commit is contained in:
parent
5078fa808e
commit
65537598d6
@ -80,7 +80,7 @@ void BackupReaderAzureBlobStorage::copyFileToDisk(const String & path_in_backup,
|
||||
DiskPtr destination_disk, const String & destination_path, WriteMode write_mode)
|
||||
{
|
||||
auto destination_data_source_description = destination_disk->getDataSourceDescription();
|
||||
LOG_TRACE(log, "Source description {}, desctionation description {}", data_source_description.description, destination_data_source_description.description);
|
||||
LOG_TRACE(log, "Source description {}, destination description {}", data_source_description.description, destination_data_source_description.description);
|
||||
if (destination_data_source_description.object_storage_type == ObjectStorageType::Azure
|
||||
&& destination_data_source_description.is_encrypted == encrypted_in_backup)
|
||||
{
|
||||
@ -153,7 +153,7 @@ void BackupWriterAzureBlobStorage::copyFileFromDisk(
|
||||
{
|
||||
/// Use the native copy as a more optimal way to copy a file from AzureBlobStorage to AzureBlobStorage if it's possible.
|
||||
auto source_data_source_description = src_disk->getDataSourceDescription();
|
||||
LOG_TRACE(log, "Source description {}, desctionation description {}", source_data_source_description.description, data_source_description.description);
|
||||
LOG_TRACE(log, "Source description {}, destination description {}", source_data_source_description.description, data_source_description.description);
|
||||
if (source_data_source_description.object_storage_type == ObjectStorageType::Azure
|
||||
&& source_data_source_description.is_encrypted == copy_encrypted)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user