[btree_builder (rust)] Fix the max_entries
This commit is contained in:
parent
3d9b32e509
commit
7d983e3155
@ -62,7 +62,8 @@ 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;
|
||||
((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
|
||||
}
|
||||
|
||||
//------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user