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
There are some changes in MySQL 8.4. For example SHOW MASTER STATUS, which is used for get the bin log position, does not exist.
SHOW MASTER STATUS
The text was updated successfully, but these errors were encountered:
https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-0.html#mysqld-8-4-0-deprecation-removal
SQL statements removed. The following SQL statements have been removed (replacements in brackets): START SLAVE (START REPLICA); STOP SLAVE (STOP REPLICA); SHOW SLAVE STATUS (SHOW REPLICA STATUS); SHOW SLAVE HOSTS (SHOW REPLICAS); RESET SLAVE (RESET REPLICA); CHANGE MASTER TO (CHANGE REPLICATION SOURCE TO); RESET MASTER (RESET BINARY LOGS AND GTIDS); SHOW MASTER STATUS (SHOW BINARY LOG STATUS); PURGE MASTER LOGS (PURGE BINARY LOGS); and SHOW MASTER LOGS (SHOW BINARY LOGS).
Sorry, something went wrong.
Now we can't create MySQL CDC shared source on MySQL 8.4 since the above MySQL changes.
SHOW MASTER STATUS is replaced by SHOW BINARY LOG STATUS https://dev.mysql.com/doc/refman/8.4/en/show-binary-log-status.html
SHOW BINARY LOG STATUS
StrikeW
No branches or pull requests
There are some changes in MySQL 8.4. For example
SHOW MASTER STATUS
, which is used for get the bin log position, does not exist.The text was updated successfully, but these errors were encountered: