xuyangzhong commented on code in PR #24243: URL: https://github.com/apache/flink/pull/24243#discussion_r1475591118
########## flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/plan/stream/sql/WindowTableFunctionTest.scala: ########## @@ -257,4 +257,48 @@ class WindowTableFunctionTest extends TableTestBase { util.verifyRelPlan(sql) } + @Test + def testSessionTVF(): Unit = { + val sql = + """ + |SELECT * + |FROM TABLE(SESSION(TABLE MyTable, DESCRIPTOR(rowtime), INTERVAL '15' MINUTE)) + |""".stripMargin + util.verifyRelPlan(sql) + } + + @Test + def testSessionTVFProctime(): Unit = { + val sql = + """ + |SELECT * + |FROM TABLE(SESSION(TABLE MyTable, DESCRIPTOR(proctime), INTERVAL '15' MINUTE)) + |""".stripMargin + util.verifyRelPlan(sql) + } + + @Test + def testSessionTVFWithPartitionKeys(): Unit = { + val sql = + """ + |SELECT * + |FROM TABLE(SESSION(TABLE MyTable PARTITION BY (b, a), DESCRIPTOR(rowtime), INTERVAL '15' MINUTE)) + |""".stripMargin + util.verifyRelPlan(sql) + } + + @Test + def testSessionTVFWithNamedParams(): Unit = { Review Comment: I have double checked the Flip-145 and the user doc. I only find that `the DATA param must be the first`. That means we should allow the order changes about param DATA and GAP. But I think it's better to open a separate Jira for it. This pr focuses on the wrong PARAM name between `SIZE` in Calcite and `GAP` in Flink. WDYT? -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org