File tree Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -104,19 +104,14 @@ impl RoaringBitmap {
104104 let mut offsets = vec ! [ 0 ; size] ;
105105 reader. read_exact ( cast_slice_mut ( & mut offsets) ) ?;
106106 offsets. iter_mut ( ) . for_each ( |offset| * offset = u32:: from_le ( * offset) ) ;
107-
108- // Loop on the materialized containers if there
109- // are less or as many of them than serialized ones.
110- if self . containers . len ( ) <= size {
111- return self . intersection_with_serialized_impl_with_offsets (
112- reader,
113- a,
114- b,
115- & descriptions,
116- & offsets,
117- run_container_bitmap. as_deref ( ) ,
118- ) ;
119- }
107+ return self . intersection_with_serialized_impl_with_offsets (
108+ reader,
109+ a,
110+ b,
111+ & descriptions,
112+ & offsets,
113+ run_container_bitmap. as_deref ( ) ,
114+ ) ;
120115 }
121116
122117 // Read each container and skip the useless ones
You can’t perform that action at this time.
0 commit comments