File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ use crate::{
19
19
Segment , SegmentInner ,
20
20
} ,
21
21
stop_signal:: StopSignal ,
22
- tree:: inner:: { SealedMemtables , TreeId } ,
22
+ tree:: inner:: TreeId ,
23
23
Config , SegmentId , SeqNo ,
24
24
} ;
25
25
use std:: {
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ impl<'a> Ingestion<'a> {
89
89
trailer. offsets . tli_ptr ,
90
90
( self . tree . id , segment_id) . into ( ) ,
91
91
self . tree . config . descriptor_table . clone ( ) ,
92
- self . tree . config . block_cache . clone ( ) ,
92
+ self . tree . config . cache . clone ( ) ,
93
93
) ?;
94
94
let block_index = BlockIndexImpl :: TwoLevel ( block_index) ;
95
95
let block_index = Arc :: new ( block_index) ;
@@ -98,7 +98,7 @@ impl<'a> Ingestion<'a> {
98
98
tree_id : self . tree . id ,
99
99
100
100
descriptor_table : self . tree . config . descriptor_table . clone ( ) ,
101
- block_cache : self . tree . config . block_cache . clone ( ) ,
101
+ cache : self . tree . config . cache . clone ( ) ,
102
102
103
103
metadata : trailer. metadata ,
104
104
offsets : trailer. offsets ,
You can’t perform that action at this time.
0 commit comments