Skip to content
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

Adding replication protocol support to mysql server implementation #759

Merged
merged 15 commits into from
Jan 16, 2023
Prev Previous commit
Next Next commit
fix: errors
  • Loading branch information
Fizic committed Dec 22, 2022
commit c6e73da9e3b1a857dd5108089282bc7a77b89329
2 changes: 1 addition & 1 deletion server/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func (h EmptyHandler) HandleStmtClose(context interface{}) error {
}

func (h EmptyReplicationHandler) HandleRegisterSlave(data []byte) error {
return nil
return fmt.Errorf("not supported now")
}

func (h EmptyReplicationHandler) HandleBinlogDump(position uint32, name string, r *replication.BinlogStreamer) {
Expand Down