Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/5132#discussion_r159878296
--- Diff:
flink-libraries/flink-table/src/test/scala/org/apache/flink/table/api/TableEnvironmentTest.scala
---
@@ -532,35 +527,27 @@ class TableEnvironmentTest extends TableTestBase {
// atomic
util.verifySchema(
- util.addTable[Int](('myint as 'new).proctime),
- Seq("new" -> PROCTIME))
+ util.addTable[Long]('new.rowtime),
--- End diff --
No alias used in method that should check "alias with replacing time
attributes by name"
---