godfreyhe commented on a change in pull request #11340: [Flink 14338] Upgrade Calcite version to 1.22 for Flink SQL URL: https://github.com/apache/flink/pull/11340#discussion_r391490807
########## File path: flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/api/batch/sql/GroupWindowTest.scala ########## @@ -376,11 +376,11 @@ class GroupWindowTest extends TableTestBase { unaryNode( "DataSetCalc", batchTableNode(table), - term("select", "CASE(=(a, 1), 1, 99) AS correct, rowtime") + term("select", "rowtime, CASE(=(a, 1), 1, 99) AS $f1") ), term("window", "TumblingGroupWindow('w$, 'rowtime, 900000.millis)"), - term("select", "SUM(correct) AS s, AVG(correct) AS a, start('w$) AS w$start," + - " end('w$) AS w$end, rowtime('w$) AS w$rowtime") + term("select", "SUM($f1) AS s, AVG($f1) AS a, start('w$) AS w$start," Review comment: alias name is dropped ? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services