Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix signature
Browse files Browse the repository at this point in the history
ankitsultana committed Jan 30, 2025

Verified

This commit was signed with the committer’s verified signature.
DmitriyMV Dmitriy Matrenichev
1 parent 66fefee commit b671adc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -221,7 +221,7 @@ public enum AggregationFunctionType {
PERCENTILERAWKLLMV("percentileRawKLLMV", ReturnTypes.VARCHAR,
OperandTypes.family(List.of(SqlTypeFamily.ARRAY, SqlTypeFamily.NUMERIC, SqlTypeFamily.INTEGER), i -> i == 2),
SqlTypeName.OTHER),
TIMESERIESAGGREGATE("timeSeriesAggregate", SqlTypeName.OTHER, SqlTypeName.VARCHAR);
TIMESERIESAGGREGATE("timeSeriesAggregate", SqlTypeName.OTHER, SqlTypeName.OTHER);

private static final Set<String> NAMES = Arrays.stream(values())
.flatMap(func -> Stream.of(func.name(), func.getName(), func.getName().toLowerCase()))

0 comments on commit b671adc

Please sign in to comment.