Expose host and port in BinlogRequest builder. #96
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello! Thanks for the crate!
The host and port were already exposed but unused in
ComRegisterSlave
, so I did a little patch to expose them inBinlogRequest
, so use them with the async/not async crate.Linked to blackbeam/mysql_async#250
It's used for reporting in command like
There is also
master_heartbeat_period
andslave_uuid
but they are settable outside of theComRegisterSlave
packet with:slave_uuid
, it's settable withset @slave_uuid='88cd28ee-ffff-11ed-b7a8-171e928e6282'"
master_heartbeat_period
set @master_heartbeat_period=<period in nanosec u64>
These two last are from mysql-internals if you are interested you can checkout how it's done in pymysqlreplication. I didn't included them since they are settable with queries.
I am writing a naive patch for mysql_async. :)