Skip to content

Commit b794f95

Browse files
authored
fix: fix bug on PartialEq
1 parent 511d4e7 commit b794f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-expr/src/expressions/scalar_regex_match.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ impl Eq for ScalarRegexMatchExpr {}
208208
impl PartialEq for ScalarRegexMatchExpr {
209209
fn eq(&self, other: &Self) -> bool {
210210
self.negated.eq(&other.negated)
211-
&& self.case_insensitive.eq(&self.case_insensitive)
211+
&& self.case_insensitive.eq(&other.case_insensitive)
212212
&& self.expr.eq(&other.expr)
213213
&& self.pattern.eq(&other.pattern)
214214
}

0 commit comments

Comments
 (0)