Skip to content

Commit 9f02d16

Browse files
committed
wip
1 parent daee918 commit 9f02d16

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

src/blob_tree/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,6 @@ impl AbstractTree for BlobTree {
360360

361361
self.register_tables(&created_tables, Some(&blob_files), None)?;
362362

363-
let last_level_idx = self.index.config.level_count - 1;
364-
365-
self.compact(Arc::new(MoveDown(0, last_level_idx)), 0)?;
366-
367363
visible_seqno.fetch_max(seqno + 1);
368364

369365
log::info!("Ingested {count} items in {:?}", start.elapsed());

src/slice/slice_default/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ impl Slice {
1919
Self(bytes.into())
2020
}
2121

22-
pub(crate) fn empty() -> Self {
22+
#[doc(hidden)]
23+
pub fn empty() -> Self {
2324
Self(ByteView::new(&[]))
2425
}
2526

src/tree/ingest.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -212,11 +212,6 @@ impl<'a> Ingestion<'a> {
212212

213213
self.tree.register_tables(&created_tables, None, None)?;
214214

215-
let last_level_idx = self.tree.config.level_count - 1;
216-
217-
self.tree
218-
.compact(Arc::new(MoveDown(0, last_level_idx)), 0)?;
219-
220215
Ok(())
221216
}
222217
}

0 commit comments

Comments
 (0)