File tree Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Original file line number Diff line number Diff 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( ) ) ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments