Added extra per-table log for mysql_servers checksum generation

pull/2833/head
Javier Jaramago Fernández 6 years ago
parent 319630c54a
commit 98a677d4af

@ -1892,6 +1892,7 @@ bool MySQL_HostGroups_Manager::commit() {
}
uint64_t hash1_ = resultset->raw_checksum();
myhash.Update(&hash1_, sizeof(hash1_));
proxy_info("Checksum for table %s is %llu\n", "mysql_servers", hash1_);
}
delete resultset;
}
@ -1911,6 +1912,7 @@ bool MySQL_HostGroups_Manager::commit() {
}
uint64_t hash1_ = resultset->raw_checksum();
myhash.Update(&hash1_, sizeof(hash1_));
proxy_info("Checksum for table %s is %llu\n", "mysql_replication_hostgroups", hash1_);
}
delete resultset;
}
@ -1930,6 +1932,7 @@ bool MySQL_HostGroups_Manager::commit() {
}
uint64_t hash1_ = resultset->raw_checksum();
myhash.Update(&hash1_, sizeof(hash1_));
proxy_info("Checksum for table %s is %llu\n", "mysql_group_replication_hostgroups", hash1_);
}
delete resultset;
}
@ -1949,6 +1952,7 @@ bool MySQL_HostGroups_Manager::commit() {
}
uint64_t hash1_ = resultset->raw_checksum();
myhash.Update(&hash1_, sizeof(hash1_));
proxy_info("Checksum for table %s is %llu\n", "mysql_galera_hostgroups", hash1_);
}
delete resultset;
}
@ -1968,6 +1972,7 @@ bool MySQL_HostGroups_Manager::commit() {
}
uint64_t hash1_ = resultset->raw_checksum();
myhash.Update(&hash1_, sizeof(hash1_));
proxy_info("Checksum for table %s is %llu\n", "mysql_aws_aurora_hostgroups", hash1_);
}
delete resultset;
}

Loading…
Cancel
Save