Skip to content

Commit f750267

Browse files
committed
remove unnecessary .clone() in pipelined.rs
1 parent bc4fea2 commit f750267

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/execution/src/pipelined.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ impl PipelinedIxJoin {
857857
.map(Row::Ptr)
858858
.map(Tuple::Row)
859859
{
860-
f(u.clone().join(v.clone()))?;
860+
f(u.clone().join(v))?;
861861
}
862862
Ok(())
863863
})?;

0 commit comments

Comments
 (0)