Skip to content

Commit ab74641

Browse files
committed
more minimize change
1 parent b6ba4f7 commit ab74641

File tree

1 file changed

+2
-1
lines changed
  • datafusion/physical-expr/src/expressions

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,9 @@ impl Eq for InListExpr {}
388388
impl Hash for InListExpr {
389389
fn hash<H: Hasher>(&self, state: &mut H) {
390390
self.expr.hash(state);
391-
self.list.hash(state);
392391
self.negated.hash(state);
392+
// Add `self.static_filter` when hash is available
393+
self.list.hash(state);
393394
}
394395
}
395396

0 commit comments

Comments
 (0)