[btree_builder (rust)] Fix the max_entries

This commit is contained in:
Ming-Hung Tsai 2021-03-12 00:42:54 +08:00
parent 1b7f43ef9f
commit 0ff72374f8
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ pub fn pack_node<W: WriteBytesExt, V: Pack + Unpack>(node: &Node<V>, w: &mut W)
pub fn calc_max_entries<V: Unpack>() -> usize {
let elt_size = 8 + V::disk_size() as usize;
let total = ((BLOCK_SIZE - NodeHeader::disk_size() as usize) / elt_size) as usize
let total = ((BLOCK_SIZE - NodeHeader::disk_size() as usize) / elt_size) as usize;
total / 3 * 3
}