weixiangsun commented on a change in pull request #8029: URL: https://github.com/apache/pinot/pull/8029#discussion_r819278835
########## File path: pinot-core/src/main/java/org/apache/pinot/core/util/GapfillUtils.java ########## @@ -119,4 +130,138 @@ static public Serializable getDefaultValue(DataSchema.ColumnDataType dataType) { private static String canonicalizeFunctionName(String functionName) { return StringUtils.remove(functionName, '_').toLowerCase(); } + + public static boolean isGapfill(ExpressionContext expressionContext) { + if (expressionContext.getType() != ExpressionContext.Type.FUNCTION) { + return false; + } + + return GAP_FILL.equals(canonicalizeFunctionName(expressionContext.getFunction().getFunctionName())); + } + + private static boolean isGapfill(QueryContext queryContext) { + for (ExpressionContext expressionContext : queryContext.getSelectExpressions()) { + if (isGapfill(expressionContext)) { + return true; + } + } + return false; + } + + public static GapfillType getGapfillType(QueryContext queryContext) { + if (queryContext.getSubQueryContext() == null) { + if (isGapfill(queryContext)) { + Preconditions.checkArgument(queryContext.getAggregationFunctions() == null, + "Aggregation and Gapfill can not be in the same sql statement."); Review comment: Fixed. -- 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