[bug](function) add signature for precentile function (#26867)
This commit is contained in:
@ -1321,6 +1321,15 @@ public class FunctionSet<T> {
|
||||
true, false, true, true));
|
||||
|
||||
//vec percentile and percentile_approx
|
||||
addBuiltin(AggregateFunction.createBuiltin("percentile",
|
||||
Lists.newArrayList(Type.BIGINT, Type.DOUBLE), Type.DOUBLE, Type.VARCHAR,
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
false, true, false, true));
|
||||
|
||||
addBuiltin(AggregateFunction.createBuiltin("percentile_approx",
|
||||
Lists.<Type>newArrayList(Type.DOUBLE, Type.DOUBLE), Type.DOUBLE, Type.VARCHAR,
|
||||
"",
|
||||
|
||||
Reference in New Issue
Block a user