We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b48eb4e commit a469fdeCopy full SHA for a469fde
2 files changed
crates/geo_filters/src/diff_count.rs
@@ -553,10 +553,8 @@ mod tests {
553
for _ in 0..1000 {
554
expected.push_hash(rnd.next_u64());
555
}
556
- let actual = GeoDiffCount::from_bit_chunks(
557
- expected.config.clone(),
558
- expected.bit_chunks().peekable(),
559
- );
+ let actual =
+ GeoDiffCount::from_bit_chunks(expected.config.clone(), expected.bit_chunks());
560
assert_eq!(expected, actual);
561
});
562
crates/geo_filters/src/distinct_count.rs
@@ -225,7 +225,7 @@ fn or<C: GeoConfig<Distinct>>(
225
226
GeoDistinctCount::<'static, C>::from_bit_chunks(
227
a.config.clone(),
228
- or_bit_chunks(a.bit_chunks(), b.bit_chunks()).peekable(),
+ or_bit_chunks(a.bit_chunks(), b.bit_chunks()),
229
)
230
231
0 commit comments