Update DataTypeDomainSimpleAggregateFunction.cpp

This commit is contained in:
alexey-milovidov 2019-03-26 00:57:34 +03:00 committed by bgranvea
parent c1ea15f0bb
commit e4b93f092b

View File

@ -30,8 +30,8 @@ namespace ErrorCodes
extern const int LOGICAL_ERROR;
}
const std::vector<String> supported_functions = std::vector<String>(
{"any", "anyLast", "min", "max", "sum"});
static const std::initializer_list<String> supported_functions = std::vector<String>(
{"any", "anyLast", "min", "max", "sum"});
String DataTypeDomainSimpleAggregateFunction::doGetName() const