提交 68cfd471 编写于 作者: A Alexey Milovidov

dbms: added missing aggregate function synonim [#METR-16266].

上级 96f1bbc3
......@@ -468,7 +468,7 @@ AggregateFunctionPtr AggregateFunctionFactory::get(const String & name, const Da
return res;
}
else if (name == "quantileDeterministic")
else if (name == "medianDeterministic" || name == "quantileDeterministic")
{
if (argument_types.size() != 2)
throw Exception("Incorrect number of arguments for aggregate function " + name, ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
......@@ -722,6 +722,7 @@ const AggregateFunctionFactory::FunctionNames & AggregateFunctionFactory::getFun
"quantileTimingWeighted",
"quantilesTimingWeighted",
"medianTimingWeighted",
"medianDeterministic",
"quantileDeterministic",
"quantilesDeterministic",
"sequenceMatch",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册