You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add MySQL 8.4-specific replication and group replication templates
Add dedicated templates for MySQL 8.4+ that eliminate deprecation warnings
from removed/renamed variables:
- repl_crash_safe_options84.gotxt: omits master-info-repository and
relay-log-info-repository (removed in 8.4), keeps relay-log-recovery=on
- group_repl_options84.gotxt: omits transaction_write_set_extraction
(removed in 8.4) and uses log_replica_updates unconditionally
- init_slaves_84.gotxt: documents 8.4+ CHANGE REPLICATION SOURCE TO syntax
- init_nodes84.gotxt: group replication init using 8.4+ replication commands
Update replication.go to use SOURCE_AUTO_POSITION instead of
MASTER_AUTO_POSITION for MySQL 8.0.23+, and select the appropriate
init_slaves template based on version. Update group_replication.go,
multi-source-replication.go, pxc_replication.go, and cmd/single.go to
select the 8.4-specific crash-safe and group options templates when the
MySQL version is >= 8.4.0.
0 commit comments