diff --git a/src/Interpreters/CacheLog.cpp b/src/Interpreters/CacheLog.cpp index 1e878c563fa..741726fb4a3 100644 --- a/src/Interpreters/CacheLog.cpp +++ b/src/Interpreters/CacheLog.cpp @@ -8,9 +8,10 @@ namespace DB NamesAndTypesList CacheLogElement::getNamesAndTypes() { - return {{"query_id", std::make_shared()}, - {"hit_count", std::make_shared()}, - {"miss_count", std::make_shared()}}, + return { + {"query_id", std::make_shared()}, + {"hit_count", std::make_shared()}, + {"miss_count", std::make_shared()}}; } void CacheLogElement::appendToBlock(MutableColumns & columns) const