Skip to content

Commit

Permalink
Revert "trim string before rowsort (#137)"
Browse files Browse the repository at this point in the history
This reverts commit 693583b.
  • Loading branch information
xxchan authored Dec 30, 2022
1 parent 693583b commit 06a94a8
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions sqllogictest/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -512,15 +512,6 @@ impl<D: AsyncDB> Runner<D> {
}
};

// trim strings
for row in &mut rows {
for value in row {
if value.trim() != value {
*value = value.trim().to_string();
}
}
}

match sort_mode.as_ref().or(self.sort_mode.as_ref()) {
None | Some(SortMode::NoSort) => {}
Some(SortMode::RowSort) => {
Expand Down

0 comments on commit 06a94a8

Please sign in to comment.