julianhyde commented on code in PR #3590:
URL: https://github.com/apache/calcite/pull/3590#discussion_r1434594471
##########
testkit/src/main/java/org/apache/calcite/test/SqlOperatorTest.java:
##########
@@ -13686,6 +13673,31 @@ void testCastTruncates(CastType castType,
SqlOperatorFixture f) {
}
}
+ static class AliasInfo {
+ private final SqlFunction function;
+ private final String alias;
+ private final SqlLibrary[] libraries;
Review Comment:
Constructor parameter should be varargs, not array.
`libraries` field should be immutable list, not array.
--
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]