add include

This commit is contained in:
KinderRiven 2022-04-21 23:22:52 +08:00
parent ef863a7942
commit ee6ef29538

View File

@ -8,9 +8,10 @@ namespace DB
NamesAndTypesList CacheLogElement::getNamesAndTypes() NamesAndTypesList CacheLogElement::getNamesAndTypes()
{ {
return {{"query_id", std::make_shared<DataTypeString>()}, return {
{"hit_count", std::make_shared<DataTypeUInt64>()}, {"query_id", std::make_shared<DataTypeString>()},
{"miss_count", std::make_shared<DataTypeUInt64>()}}, {"hit_count", std::make_shared<DataTypeUInt64>()},
{"miss_count", std::make_shared<DataTypeUInt64>()}};
} }
void CacheLogElement::appendToBlock(MutableColumns & columns) const void CacheLogElement::appendToBlock(MutableColumns & columns) const