We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e6fce9 commit 885cf1bCopy full SHA for 885cf1b
1 file changed
datafusion/physical-expr/src/expressions/binary.rs
@@ -4892,7 +4892,7 @@ mod tests {
4892
let got = neq.evaluate_statistics(&[left_stat, right_stat])?;
4893
let expected = Distribution::new_bernoulli(ScalarValue::from(15.0 / 16.0))?;
4894
match (got, expected) {
4895
- (Bernoulli(g), Bernoulli(e)) => {
+ (Bernoulli(g), Bernoulli(e)) => {
4896
let gp = match g.p_value() {
4897
ScalarValue::Float64(Some(v)) => v,
4898
_ => panic!("got unexpected p type"),
0 commit comments