Commit 79115b02 authored by Barry Perlman's avatar Barry Perlman Committed by Yoni Fogel

[t:3982] #3982 Fix broken assert.

git-svn-id: file:///svn/toku/tokudb@35848 c7de825b-a66e-492c-adef-691d508d4ae1
parent afdd4a2b
......@@ -782,7 +782,7 @@ test_serialize_leaf_with_empty_basement_nodes(enum brtnode_verify_type bft) {
assert(dn->layout_version_original ==BRT_LAYOUT_VERSION);
assert(dn->layout_version_read_from_disk ==BRT_LAYOUT_VERSION);
assert(dn->height == 0);
// TODO: WHY DOES THIS FAIL??? assert(dn->optimized_for_upgrade = 1234);
assert(dn->optimized_for_upgrade == 1234);
assert(dn->n_children>0);
{
const u_int32_t npartitions = dn->n_children;
......
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