diff --git a/sqllogictest/src/runner.rs b/sqllogictest/src/runner.rs index 792dd2a..ea2734a 100644 --- a/sqllogictest/src/runner.rs +++ b/sqllogictest/src/runner.rs @@ -1038,8 +1038,8 @@ impl> Runner { 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