Skip to content

Commit 756f790

Browse files
committed
Revert "trim string before rowsort (#137)"
This reverts commit 693583b. Signed-off-by: xxchan <[email protected]>
1 parent 693583b commit 756f790

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

sqllogictest/src/runner.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -512,15 +512,6 @@ impl<D: AsyncDB> Runner<D> {
512512
}
513513
};
514514

515-
// trim strings
516-
for row in &mut rows {
517-
for value in row {
518-
if value.trim() != value {
519-
*value = value.trim().to_string();
520-
}
521-
}
522-
}
523-
524515
match sort_mode.as_ref().or(self.sort_mode.as_ref()) {
525516
None | Some(SortMode::NoSort) => {}
526517
Some(SortMode::RowSort) => {

0 commit comments

Comments
 (0)