在master服务器
mysql>show master status;
File: bin-log-db-test.000001
Position: 16213835
在slave服务器
mysql>show slave status \G;
Master_Log_File: bin-log-db-test.000001
Read_Master_Log_Pos: 16213835Relay_Master_Log_File: bin-log-db-test.000001
Exec_Master_Log_Pos: 16213835Slave_IO_Running:  Yes
Slave_SQL_Running:  Yes Seconds_Behind_Master:  0
根据我列出的这些字段是否就可以说明主从的数据是一致的?如果不行,除了使用第三方工具外,如何才能检测出主从数据是否一致呢?