From 3fb0eab11664b8985aaeef69d738595a659ab13b Mon Sep 17 00:00:00 2001 From: Nikita Vasilev Date: Sat, 23 May 2020 19:11:20 +0300 Subject: [PATCH] fix --- src/Dictionaries/SSDComplexKeyCacheDictionary.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Dictionaries/SSDComplexKeyCacheDictionary.cpp b/src/Dictionaries/SSDComplexKeyCacheDictionary.cpp index 57c9b55143e..73fe382c853 100644 --- a/src/Dictionaries/SSDComplexKeyCacheDictionary.cpp +++ b/src/Dictionaries/SSDComplexKeyCacheDictionary.cpp @@ -1350,8 +1350,8 @@ SSDComplexKeyCacheDictionary::SSDComplexKeyCacheDictionary( const auto index = getAttributeIndex(attribute_name); \ checkAttributeType(name, attribute_name, dict_struct.attributes[index].underlying_type, AttributeUnderlyingType::ut##TYPE); \ const auto null_value = std::get(null_values[index]); /* NOLINT */ \ - getItemsNumberImpl( index, key_columns, key_types, out, [&](const size_t) { return null_value; }); \ - } /* NOLINT */ + getItemsNumberImpl(index, key_columns, key_types, out, [&](const size_t) { return null_value; }); /* NOLINT */ \ + } DECLARE(UInt8) DECLARE(UInt16)