Skip to content

Commit

Permalink
tabs vs space
Browse files Browse the repository at this point in the history
  • Loading branch information
Fantayeneh Asres Gizaw committed Feb 6, 2025
1 parent 98ec656 commit 02db286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqllogictest/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ impl<D: AsyncDB, M: MakeConnection<Conn = D>> Runner<D, M> {

if !(self.validator)(self.normalizer, &actual_results, &expected_results) {
let output_rows =
rows.iter().map(|strs| strs.iter().join(" ")).collect_vec();
rows.iter().map(|strs| strs.iter().join("\t")).collect_vec();
return Err(TestErrorKind::QueryResultMismatch {
sql,
expected: expected_results.join("\n"),
Expand Down

0 comments on commit 02db286

Please sign in to comment.