Skip to content

Commit

Permalink
fix system override
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan committed Apr 11, 2024
1 parent 4719709 commit 7bcb639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqllogictest/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ impl<T: ColumnType> std::fmt::Display for Record<T> {
} => {
writeln!(f, "system ok\n{command}")?;
if let Some(stdout) = stdout {
writeln!(f, "----\n{stdout}\n")?;
writeln!(f, "----\n{}\n", stdout.trim())?;
}
Ok(())
}
Expand Down

0 comments on commit 7bcb639

Please sign in to comment.