aboutsummaryrefslogtreecommitdiff
path: root/src/table_sync.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/table_sync.rs')
-rw-r--r--src/table_sync.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/table_sync.rs b/src/table_sync.rs
index 013e6358..c1d3bea8 100644
--- a/src/table_sync.rs
+++ b/src/table_sync.rs
@@ -346,6 +346,8 @@ impl<F: TableSchema + 'static> TableSyncer<F> {
}
}
}
+ let n_checksums = checksums.iter().map(|x| x.children.len()).fold(0, |x, y| x + y);
+ eprintln!("({}) Checksum comparison RPC: {} different out of {}", self.table.name, ret.len(), n_checksums);
Ok(ret)
}