-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎉 Postgres source: retrieve only the tables in the publication under cdc mode #14447
Conversation
} | ||
|
||
return stream; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These methods related to CDC catalog manipulation are moved to PostgresCdcCatalogHelper
.
&& config.get("replication_method").hasNonNull("publication"); | ||
LOGGER.info("using CDC: {}", isCdc); | ||
return isCdc; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method is moved to PostgresUtils
.
/test connector=connectors/source-postgres
Build PassedTest summary info:
|
…k-publication-in-discover
/test connector=connectors/source-postgres
Build PassedTest summary info:
|
/publish connector=connectors/source-postgres
if you have connectors that successfully published but failed definition generation, follow step 4 here |
/publish connector=connectors/source-postgres-strict-encrypt
if you have connectors that successfully published but failed definition generation, follow step 4 here |
What