Commit db89cbfd 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 1a31f3db
...@@ -98,7 +98,7 @@ void toku_serialize_brtnode_to (int fd, DISKOFF off, DISKOFF size, BRTNODE node) ...@@ -98,7 +98,7 @@ void toku_serialize_brtnode_to (int fd, DISKOFF off, DISKOFF size, BRTNODE node)
int i; int i;
unsigned int calculated_size = toku_serialize_brtnode_size_slow(node); unsigned int calculated_size = toku_serialize_brtnode_size_slow(node);
if (calculated_size!=toku_serialize_brtnode_size(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); assert(calculated_size<=size);
//char buf[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