Skip to content

Commit

Permalink
added function to built-in namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
DHRUV6029 committed Nov 24, 2024
1 parent e549fa1 commit b75aa5f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
import com.facebook.presto.operator.aggregation.RealSumAggregation;
import com.facebook.presto.operator.aggregation.ReduceAggregationFunction;
import com.facebook.presto.operator.aggregation.SumDataSizeForStats;
import com.facebook.presto.operator.aggregation.SumIfAggregation;
import com.facebook.presto.operator.aggregation.VarianceAggregation;
import com.facebook.presto.operator.aggregation.approxmostfrequent.ApproximateMostFrequent;
import com.facebook.presto.operator.aggregation.arrayagg.ArrayAggregationFunction;
Expand Down Expand Up @@ -712,6 +713,7 @@ private List<? extends SqlFunction> getBuiltInFunctions(FunctionsConfig function
.aggregates(VarianceAggregation.class)
.aggregates(CentralMomentsAggregation.class)
.aggregates(CountIfAggregation.class)
.aggregates(SumIfAggregation.class)
.aggregates(BooleanAndAggregation.class)
.aggregates(BooleanOrAggregation.class)
.aggregates(DoubleSumAggregation.class)
Expand Down

0 comments on commit b75aa5f

Please sign in to comment.