-
Notifications
You must be signed in to change notification settings - Fork 89
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
mysql_replication
: CHANGE REPLICATION SOURCE TO
statement support
#635
Comments
@dennisurtubia hello, thanks for reporting the issue! I'll put the |
And yet another MySQL vs MariaDB difference to handle: |
Hey @Andersson007, Idk if this is a good first issue, but, I would love to work on this |
@dennisurtubia great, thanks! There's a quick start dev guide that can be handy. |
Do you also have plans to update getprimary function for mysql 8.4? It's not anymore SHOW MASTER STATUS but SHOW BINARY LOG STATUS. Support for SHOW MASTER STATUS is already removed in 8.4, so it gives error. |
Hello, @poyrazus. I can work on this! In case, I suggest we create a new mode, something like It's make sense @laurent-indermuehle @Andersson007? |
@dennisurtubia in mysql_info and mysql_user (from memory, the truth is in the code) we have methods to get the engine (mysql|mariadb) and the version. So we can reliably implement method only for specific version (using the handy is version('8.4','>=')). |
SUMMARY
Adds
CHANGE REPLICATION SOURCE TO
statement support.ISSUE TYPE
COMPONENT NAME
community.mysql.mysql_replication module
ADDITIONAL INFORMATION
The
CHANGE MASTER TO
statement was deprecated. MySQL docExample using Group Replication:
The text was updated successfully, but these errors were encountered: