This is an automated email from the ASF dual-hosted git repository. snuyanzin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 721cb0a184a9ac7f72bd3f096858c4e7435e7cdb Author: Sergey Nuyanzin <[email protected]> AuthorDate: Fri Jan 23 14:08:18 2026 +0100 [hotfix][table] Rename vars in `CatalogViewITCase#testShowCreateViewWithTumbleWindow` --- .../apache/flink/table/planner/catalog/CatalogViewITCase.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/catalog/CatalogViewITCase.scala b/flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/catalog/CatalogViewITCase.scala index 0d4560eba95..c61f5985fe9 100644 --- a/flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/catalog/CatalogViewITCase.scala +++ b/flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/catalog/CatalogViewITCase.scala @@ -527,18 +527,18 @@ class CatalogViewITCase(isStreamingMode: Boolean) extends TableITCaseBase { // FLINK-38950: Verify window TVF with ORDER BY generates correct expanded SQL // without duplicating the ORDER BY clause in the catalog view definition. tableEnv.createTable("t1", buildTableDescriptor()) - val viewWithInnerJoinDDL: String = + val viewWithTumbleWindowDDL: String = s"""CREATE VIEW tumbleWindowViewWithOrderBy AS |SELECT a |FROM TUMBLE(TABLE t1, DESCRIPTOR(ts), INTERVAL '1' MINUTE) |ORDER BY ts""".stripMargin - tableEnv.executeSql(viewWithInnerJoinDDL) - val showCreateInnerJoinViewResult: util.List[Row] = CollectionUtil.iteratorToList( + tableEnv.executeSql(viewWithTumbleWindowDDL) + val showCreateViewWithTumbleWindowResult: util.List[Row] = CollectionUtil.iteratorToList( tableEnv .executeSql("SHOW CREATE VIEW tumbleWindowViewWithOrderBy") .collect() ) - assertThatList(showCreateInnerJoinViewResult).containsExactly( + assertThatList(showCreateViewWithTumbleWindowResult).containsExactly( Row.of( s"""CREATE VIEW `default_catalog`.`default_database`.`tumbleWindowViewWithOrderBy` ( | `a`
