weixiangsun commented on a change in pull request #7584: URL: https://github.com/apache/pinot/pull/7584#discussion_r734793772
########## File path: pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/AggregationFunctionFactory.java ########## @@ -156,6 +157,46 @@ public static AggregationFunction getAggregationFunction(FunctionContext functio return new AvgAggregationFunction(firstArgument); case MODE: return new ModeAggregationFunction(arguments); + case LASTWITHTIME: + if (arguments.size() == 3) { + ExpressionContext timeCol = arguments.get(1); + ExpressionContext dataType = arguments.get(2); + if (dataType.getType() != ExpressionContext.Type.LITERAL) { + throw new IllegalArgumentException("Third argument of lastWithTime Function should be literal." + + " The function can be used as lastWithTime(dataColumn, timeColumn, 'dataType')"); + } + FieldSpec.DataType fieldDataType + = FieldSpec.DataType.valueOf(dataType.getLiteral().toUpperCase()); + switch (fieldDataType) { + case BOOLEAN: Review comment: Will do as separate change. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org