We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6eb36dd commit 9392d19Copy full SHA for 9392d19
1 file changed
tests/test_hll.rs
@@ -133,14 +133,6 @@ pub fn test_union_merge_at_precision_and_bits<
133
R: Registers<P, B>,
134
H: HasherType,
135
>() {
136
- // The hash-list cardinality correction tables only cover precisions 4..=15, so
137
- // `estimate_cardinality` in hash-list mode panics at precisions 16..=18 (a pre-existing
138
- // gap in the generated correction coefficients, unrelated to the merger). We restrict
139
- // this test to the supported range.
140
- if P::EXPONENT > 15 {
141
- return;
142
- }
143
-
144
let mut left: HyperLogLog<P, B, R, H> = Default::default();
145
let mut right: HyperLogLog<P, B, R, H> = Default::default();
146
let mut exact_left = std::collections::HashSet::new();
0 commit comments