diff --git a/dbms/src/Dictionaries/PolygonDictionaryImplementations.cpp b/dbms/src/Dictionaries/PolygonDictionaryImplementations.cpp index d2adce3eb2e..5087a0bea5c 100644 --- a/dbms/src/Dictionaries/PolygonDictionaryImplementations.cpp +++ b/dbms/src/Dictionaries/PolygonDictionaryImplementations.cpp @@ -118,7 +118,7 @@ SmartPolygonDictionary::SmartPolygonDictionary( buckets.reserve(polygons.size()); for (size_t i = 0; i < buckets.size(); ++i) { - buckets.emplace_back({polygons[i]}); + buckets.emplace_back(std::vector{polygons[i]}); } }