Skip to content

Commit 76fd945

Browse files
committed
lint
1 parent cab8afc commit 76fd945

File tree

1 file changed

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

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -632,10 +632,7 @@ pub fn in_list(
632632
schema: &Schema,
633633
) -> Result<Arc<dyn PhysicalExpr>> {
634634
Ok(Arc::new(InListExpr::try_from_static_filter(
635-
Arc::clone(&expr),
636-
list.clone(),
637-
*negated,
638-
schema,
635+
expr, list, *negated, schema,
639636
)?))
640637
}
641638

0 commit comments

Comments
 (0)