Hisoka-X commented on code in PR #9661:
URL: https://github.com/apache/seatunnel/pull/9661#discussion_r2354102963
##########
seatunnel-connectors-v2/connector-databend/src/main/java/org/apache/seatunnel/connectors/seatunnel/databend/sink/DatabendSink.java:
##########
@@ -142,11 +169,6 @@ public DatabendSinkWriter createWriter(@NonNull
SinkWriter.Context context) thro
}
}
- @Override
- public Optional<CatalogTable> getWriteCatalogTable() {
- return Optional.of(catalogTable);
- }
Review Comment:
I mean you change
```
@Override
public Optional<CatalogTable> getWriteCatalogTable() {
return Optional.of(catalogTable);
}
```
to
```
@Override
public Optional<CatalogTable> getWriteCatalogTable() {
return SeaTunnelSink.super.getWriteCatalogTable();
}
```
.
But we should keep the first one.
--
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]