yunqingmoswu commented on code in PR #6766: URL: https://github.com/apache/inlong/pull/6766#discussion_r1041745340
########## inlong-sort/sort-connectors/iceberg/src/main/java/org/apache/inlong/sort/iceberg/sink/multiple/IcebergSingleStreamWriter.java: ########## @@ -58,20 +66,28 @@ private transient TaskWriter<T> writer; private transient int subTaskId; private transient int attemptId; - @Nullable - private transient SinkMetricData metricData; + private @Nullable transient SinkMetricData metricData; private transient ListState<MetricState> metricStateListState; private transient MetricState metricState; + private @Nullable final RowType flinkRowType; + private final DirtyOptions dirtyOptions; + private @Nullable final DirtySink<Object> dirtySink; public IcebergSingleStreamWriter( String fullTableName, TaskWriterFactory<T> taskWriterFactory, String inlongMetric, - String auditHostAndPorts) { + String auditHostAndPorts, + @Nullable RowType flinkRowType, + DirtyOptions dirtyOptions, + @Nullable DirtySink<Object> dirtySink) { this.fullTableName = fullTableName; this.taskWriterFactory = taskWriterFactory; this.inlongMetric = inlongMetric; this.auditHostAndPorts = auditHostAndPorts; + this.flinkRowType = flinkRowType; Review Comment: done -- 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: commits-unsubscr...@inlong.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org