tableEnv.fromDataStream(xxxStream).addColumns('processTime.proctime)
The above code will throw excetion:
org.apache.flink.table.api.ValidationException: Window properties can only be used on windowed tables.
but this will works
tableEnv.fromDataStream(xxxStream, 'id, ......, 'processTime.proctime)
But I must repeat all the columns in this way.