JingsongLi commented on a change in pull request #12260: URL: https://github.com/apache/flink/pull/12260#discussion_r428534265
########## File path: flink-table/flink-table-planner-blink/src/main/scala/org/apache/flink/table/planner/sources/TableSourceUtil.scala ########## @@ -238,6 +250,14 @@ object TableSourceUtil { } } + private def containsTimeAttribute(tableSchema: TableSchema): Boolean = { + tableSchema.getWatermarkSpecs.nonEmpty || tableSchema.getTableColumns.exists(isProctime) + } + + private def isProctime(column: TableColumn): Boolean = { + toScala(column.getExpr).exists(_.equalsIgnoreCase("proctime()")) + } Review comment: It is hard to get `Sqlparser` too. Obtain parser also creates a circular dependency. It is hard to break it. I will remove `" "` for checking. ---------------------------------------------------------------- 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