We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 511d4e7 commit b794f95Copy full SHA for b794f95
datafusion/physical-expr/src/expressions/scalar_regex_match.rs
@@ -208,7 +208,7 @@ impl Eq for ScalarRegexMatchExpr {}
208
impl PartialEq for ScalarRegexMatchExpr {
209
fn eq(&self, other: &Self) -> bool {
210
self.negated.eq(&other.negated)
211
- && self.case_insensitive.eq(&self.case_insensitive)
+ && self.case_insensitive.eq(&other.case_insensitive)
212
&& self.expr.eq(&other.expr)
213
&& self.pattern.eq(&other.pattern)
214
}
0 commit comments