| 143 | } |
| 144 | |
| 145 | void MySQLClient::setBinlogChecksum(const String & binlog_checksum) |
| 146 | { |
| 147 | replication.setChecksumSignatureLength(Poco::toUpper(binlog_checksum) == "NONE" ? 0 : 4); |
| 148 | } |
| 149 | |
| 150 | void MySQLClient::startBinlogDumpGTID(UInt32 slave_id, String replicate_db, std::unordered_set<String> replicate_tables, |
| 151 | String gtid_str, String binlog_name, const String & binlog_checksum) |
no test coverage detected