zhuangchong commented on code in PR #2345:
URL: https://github.com/apache/incubator-paimon/pull/2345#discussion_r1410148011
##########
paimon-flink/paimon-flink-cdc/src/main/java/org/apache/paimon/flink/action/cdc/SyncTableActionBase.java:
##########
@@ -214,17 +211,6 @@ public void build() throws Exception {
sinkBuilder.build();
}
- protected DataStreamSource<String> buildDataStreamSource(Object source) {
- if (source instanceof Source) {
- return env.fromSource(
- (Source<String, ?, ?>) source,
WatermarkStrategy.noWatermarks(), sourceName());
- }
- if (source instanceof SourceFunction) {
- return env.addSource((SourceFunction<String>) source,
sourceName());
- }
- throw new UnsupportedOperationException("Unrecognized source type");
- }
-
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]