Skip to content

Commit

Permalink
update PartialEq in LikeExpr
Browse files Browse the repository at this point in the history
  • Loading branch information
unconsolable committed Jan 2, 2023
1 parent 83f394c commit 664879d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions datafusion/physical-expr/src/expressions/like.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ impl PartialEq<dyn Any> for LikeExpr {
.downcast_ref::<Self>()
.map(|x| {
self.negated == x.negated
&& self.case_insensitive == x.case_insensitive
&& self.expr.eq(&x.expr)
&& self.pattern.eq(&x.pattern)
})
Expand Down

0 comments on commit 664879d

Please sign in to comment.