We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Even though there is no change in the stream options, the diff tool outputs the following:
ALTER CHANGE STREAM SET OPTIONS (null);
This error cannot be found when running the "mvn clean verify" command, but it appears when running the jar file again two DDLs file.
The text was updated successfully, but these errors were encountered:
Ok. found the reason. it occurs when the options in new and old change streams are in different order
such as old.ddl
create change stream toremain2 for all OPTIONS ( retention_period = '7d', value_capture_type = 'OLD_AND_NEW_VALUES', exclude_ttl_deletes = true);
new.ddl
create change stream toremain2 for all OPTIONS ( value_capture_type = 'OLD_AND_NEW_VALUES', retention_period = '7d', exclude_ttl_deletes = true);
The fix is easy
Sorry, something went wrong.
Thanks for the debugging - and fix!
No branches or pull requests
Even though there is no change in the stream options, the diff tool outputs the following:
ALTER CHANGE STREAM SET OPTIONS (null);
This error cannot be found when running the "mvn clean verify" command, but it appears when running the jar file again two DDLs file.
The text was updated successfully, but these errors were encountered: