This commit is contained in:
bronku 2025-12-13 14:55:19 +01:00
parent 16d04f3e7c
commit bf4200e9e5
3 changed files with 3 additions and 1 deletions

View file

@ -1,7 +1,7 @@
use crate::config::MAX_KEYS;
use crate::node::*;
use crate::record::Record;
use crate::storage::Storage;
const MAX_KEYS: usize = 4;
pub struct BPlusTree<S> {
storage: S,