Skip to content

Commit

Permalink
Cargo clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Omega359 committed Dec 12, 2024
1 parent d3e9b05 commit 32fb62e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqllogictest/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1038,8 +1038,8 @@ impl<D: AsyncDB, M: MakeConnection<Conn = D>> Runner<D, M> {

let actual_results = match self.result_mode {
Some(ResultMode::ValueWise) => rows
.into_iter()
.flat_map(|strs| strs.into_iter())
.iter()
.flat_map(|strs| strs.iter())
.map(|str| vec![str.to_string()])
.collect_vec(),
// default to rowwise
Expand Down

0 comments on commit 32fb62e

Please sign in to comment.