From cec5037c4dbf0124a008ce62d05ad0abd330ec2b Mon Sep 17 00:00:00 2001 From: Kruglov Pavel <48961922+Avogar@users.noreply.github.com> Date: Tue, 3 Sep 2024 12:05:26 +0200 Subject: [PATCH] Update Configuration.h --- src/Storages/ObjectStorage/Azure/Configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Storages/ObjectStorage/Azure/Configuration.h b/src/Storages/ObjectStorage/Azure/Configuration.h index 2e4719ea24d..311ad76814d 100644 --- a/src/Storages/ObjectStorage/Azure/Configuration.h +++ b/src/Storages/ObjectStorage/Azure/Configuration.h @@ -23,7 +23,7 @@ public: static constexpr auto type_name = "azure"; static constexpr auto engine_name = "Azure"; /// All possible signatures for Azure engine with structure argument (for example for azureBlobStorage table function). - static constexpr auto max_number_of_arguments_with_structure = 4; + static constexpr auto max_number_of_arguments_with_structure = 8; static constexpr auto signatures_with_structure = " - connection_string, container_name, blobpath\n" " - connection_string, container_name, blobpath, structure \n" @@ -37,7 +37,7 @@ public: " - storage_account_url, container_name, blobpath, account_name, account_key, format, compression, structure\n"; /// All possible signatures for Azure engine without structure argument (for example for AzureBlobStorage table engine). - static constexpr auto max_number_of_arguments_without_structure = 3; + static constexpr auto max_number_of_arguments_without_structure = 7; static constexpr auto signatures_without_structure = " - connection_string, container_name, blobpath\n" " - connection_string, container_name, blobpath, format \n"