zachjsh commented on code in PR #14378:
URL: https://github.com/apache/druid/pull/14378#discussion_r1226847483
##########
sql/src/test/java/org/apache/druid/sql/calcite/CalciteQueryTest.java:
##########
@@ -429,6 +431,22 @@ public void testAggregatorsOnInformationSchemaColumns()
);
}
+ @Test
+ public void testAggregatorOnInformationSchemaRoutines()
+ {
+ notMsqCompatible();
+ testQuery(
+ "SELECT\n"
+ + " COUNT(*)\n"
+ + "FROM INFORMATION_SCHEMA.ROUTINES\n"
+ + "WHERE IS_AGGREGATOR = 'YES'",
+ ImmutableList.of(),
+ ImmutableList.of(
+ new Object[]{30L}
Review Comment:
question: i guess this is just the count of the native aggregators? There
isnt any possibility of any extensions core or non-core being loaded at time
this test is run is there?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]