matriv commented on a change in pull request #17759:
URL: https://github.com/apache/flink/pull/17759#discussion_r748380293



##########
File path: 
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/plan/nodes/exec/common/CommonExecSink.java
##########
@@ -351,6 +356,16 @@ private int deriveSinkParallelism(
                 sinkParallelism);
     }
 
+    private Transformation<RowData> createTimestampTransformation(
+            Transformation<RowData> inputTransform, int rowtimeFieldIndex, int 
sinkParallelism) {
+        return new OneInputTransformation<>(
+                inputTransform,
+                "TimestampMaterializer",

Review comment:
       How about `String.format("StreamRecordTimestampInserter - rowtime field: 
(%s)", timeOrderFieldIdx),` (to combine with what we had in 
`RowtimeProcessFunction`)?




-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to