Commit 3d055f63 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul

Comment out of the printf statement for the beta. The printf would tell us if...

Comment out of the printf statement for the beta.  The printf would tell us if the slow and fast get out of sync.  Addresses #676.

git-svn-id: file:///svn/tokudb@3406 c7de825b-a66e-492c-adef-691d508d4ae1
parent b0c1b15d
......@@ -98,7 +98,7 @@ void toku_serialize_brtnode_to (int fd, DISKOFF off, DISKOFF size, BRTNODE node)
int i;
unsigned int calculated_size = toku_serialize_brtnode_size_slow(node);
if (calculated_size!=toku_serialize_brtnode_size(node)) {
printf("Sizes don't match: %d %d\n", calculated_size, toku_serialize_brtnode_size(node));
//printf("Sizes don't match: %d %d\n", calculated_size, toku_serialize_brtnode_size(node));
}
assert(calculated_size<=size);
//char buf[size];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment