fafacao86 commented on code in PR #4210:
URL: https://github.com/apache/calcite/pull/4210#discussion_r1970834020
##########
core/src/test/java/org/apache/calcite/test/SqlToRelConverterTest.java:
##########
@@ -5388,6 +5390,23 @@ void checkUserDefinedOrderByOver(NullCollation
nullCollation) {
.ok();
}
+ @Test void testNestedWindowAggWithIdentifierExpansionDisabled() {
+ String sql = "select sum(sum(sal)) over() from emp";
+ sql(sql)
+ .withFactory(f ->
+ f.withValidator((opTab, catalogReader, typeFactory, config) -> {
+ if (config.conformance().allowGeometry()) {
Review Comment:
This test has nothing to do with the geometry settings, I just want to keep
it the same with the default settings in calcite test fixture. I will delete
this geometry setting in this test case.
--
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]