Skip to content

Commit 32fb62e

Browse files
committed
Cargo clippy.
1 parent d3e9b05 commit 32fb62e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqllogictest/src/runner.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1038,8 +1038,8 @@ impl<D: AsyncDB, M: MakeConnection<Conn = D>> Runner<D, M> {
10381038

10391039
let actual_results = match self.result_mode {
10401040
Some(ResultMode::ValueWise) => rows
1041-
.into_iter()
1042-
.flat_map(|strs| strs.into_iter())
1041+
.iter()
1042+
.flat_map(|strs| strs.iter())
10431043
.map(|str| vec![str.to_string()])
10441044
.collect_vec(),
10451045
// default to rowwise

0 commit comments

Comments
 (0)