Copilot commented on code in PR #9525:
URL: https://github.com/apache/seatunnel/pull/9525#discussion_r2178852088
##########
seatunnel-connectors-v2/connector-cdc/connector-cdc-base/src/main/java/org/apache/seatunnel/connectors/cdc/base/source/IncrementalSource.java:
##########
@@ -128,7 +128,10 @@ public List<CatalogTable> getProducedCatalogTables() {
readonlyConfig.get(JdbcSourceOptions.FORMAT))) {
return Collections.singletonList(
CatalogTableUtil.getCatalogTable(
- "default.default",
+ "schema",
Review Comment:
The hard-coded string "schema" appears to be a placeholder rather than an
actual catalog name. Replace it with the configured catalog (or database) value
to avoid mismatches.
```suggestion
readonlyConfig.get(JdbcSourceOptions.CATALOG_NAME, "default_catalog"),
```
--
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]