jon-wei commented on code in PR #14463: URL: https://github.com/apache/druid/pull/14463#discussion_r1242936571
########## extensions-core/stats/src/main/java/org/apache/druid/query/aggregation/variance/sql/BaseVarianceSqlAggregator.java: ########## @@ -137,21 +149,77 @@ public Aggregation toDruidAggregation( ); } + private static class VarPopSqlAggFunction extends SqlAggFunction + { + VarPopSqlAggFunction() + { + super( + SqlKind.VAR_POP.name(), + null, + SqlKind.VAR_POP, + ReturnTypes.AVG_AGG_FUNCTION, + null, + OperandTypes.ANY, // Can be more specific after https://github.com/apache/druid/pull/14195 is merged Review Comment: I pulled in the changes for `RowSignatures.complexTypeChecker` -- 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...@druid.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org For additional commands, e-mail: commits-h...@druid.apache.org