Fixed else if syntax error

This commit is contained in:
Smita Kulkarni 2023-06-27 16:51:17 +02:00
parent 9734871345
commit 81b5ad3b26

View File

@ -1209,7 +1209,7 @@ ColumnsDescription StorageAzureBlob::getTableStructureFromData(
file_iterator = std::make_shared<StorageAzureBlobSource::ReadIterator>(ctx ,
ctx->getReadTaskCallback());
}
else (configuration.withGlobs())
else if (configuration.withGlobs())
{
file_iterator = std::make_shared<StorageAzureBlobSource::GlobIterator>(
object_storage, configuration.container, configuration.blob_path, nullptr, Block{}, ctx, &read_keys);