Skip to content

Commit

Permalink
Cargo clippy.
Browse files Browse the repository at this point in the history
Signed-off-by: Bruce Ritchie <bruce.ritchie@veeva.com>
  • Loading branch information
Omega359 committed Dec 12, 2024
1 parent 6f6aef4 commit b7b5a55
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 b7b5a55

Please sign in to comment.