Commit c944625f authored by John Esmet's avatar John Esmet Committed by Yoni Fogel

refs #5918 derp


git-svn-id: file:///svn/toku/tokudb@52335 c7de825b-a66e-492c-adef-691d508d4ae1
parent bde258f5
......@@ -1241,11 +1241,6 @@ void toku_ft_status_update_serialize_times(FTNODE node, tokutime_t serialize_tim
STATUS_INC(FT_NONLEAF_SERIALIZE_TOKUTIME, serialize_time);
STATUS_INC(FT_NONLEAF_COMPRESS_TOKUTIME, compress_time);
}
static int calls;
if (calls++ % 10000) {
printf("height %d serialize %lf\n", node->height, tokutime_to_seconds(serialize_time));
printf("height %d compress %lf\n", node->height, tokutime_to_seconds(compress_time));
}
}
void toku_ft_status_update_deserialize_times(FTNODE node, tokutime_t deserialize_time, tokutime_t decompress_time) {
......@@ -1256,11 +1251,6 @@ void toku_ft_status_update_deserialize_times(FTNODE node, tokutime_t deserialize
STATUS_INC(FT_NONLEAF_DESERIALIZE_TOKUTIME, deserialize_time);
STATUS_INC(FT_NONLEAF_DECOMPRESS_TOKUTIME, decompress_time);
}
static int calls;
if (calls++ % 10000) {
printf("height %d deserialize %lf\n", node->height, tokutime_to_seconds(deserialize_time));
printf("height %d decompress %lf\n", node->height, tokutime_to_seconds(decompress_time));
}
}
// callback for partially reading a node
......
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