dawidwys commented on a change in pull request #12703:
URL: https://github.com/apache/flink/pull/12703#discussion_r442458768
##########
File path:
flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/runtime/batch/sql/TableEnvironmentITCase.scala
##########
@@ -231,6 +231,7 @@ class TableEnvironmentITCase(
val resultFile = _tempFolder.newFile().getAbsolutePath
result.toDataSet[(Long, Double)]
+ .map(ds => (ds._1.toString, "%.5f".format(ds._2)))
Review comment:
I added a comment.
Side note. I know the solution is not the nicest we plan to drop the legacy
planner in 1.12, that's why did not want to invest too much time in properly
rewriting the test.
----------------------------------------------------------------
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:
[email protected]