You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under the test case of 1M random keys 1 .. 2048 bytes in length, the len == 0 condition within hattrie_get shall be triggered; the resulting bucket type shall be NODE_TYPE_PURE_BUCKET.
Under the test case of 1M random keys 1 .. 2048 bytes in length, the len == 0 condition within hattrie_get shall be triggered; the resulting bucket type shall be NODE_TYPE_PURE_BUCKET.
assert(*node.flag & NODE_TYPE_PURE_BUCKET || *node.flag & NODE_TYPE_HYBRID_BUCKET);
assert(len > 0);
The text was updated successfully, but these errors were encountered: