Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/5140#discussion_r159010195
--- Diff:
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/runtime/join/TimeBoundedStreamJoin.scala
---
@@ -143,29 +172,14 @@ abstract class TimeBoundedStreamInnerJoin(
ctx: CoProcessFunction[CRow, CRow, CRow]#Context,
out: Collector[CRow]): Unit = {
+ joinCollector.setCollector(out)
--- End diff --
Directly set the variable to avoid the method call (like
`CRowWrappingCollector`).
---