We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9924a96 commit 6f49f29Copy full SHA for 6f49f29
sqllogictest/src/parser.rs
@@ -640,10 +640,23 @@ mod tests {
640
let records = parse_file(filename).expect("parsing to complete");
641
642
let unparsed = records
643
- .into_iter()
+ .iter()
644
.map(record_to_string)
645
.collect::<Vec<_>>();
646
647
+ // Technically this will not always be the same due to some whitespace normalization
648
+ //
649
+ // query III
650
+ // select * from foo;
651
+ // ----
652
+ // 1 2
653
654
+ // Will print out collaposting the spaces between `query`
655
656
657
658
659
660
let output_contents = unparsed.join("\n");
661
662
let changeset = Changeset::new(&input_contents, &output_contents, "\n");
0 commit comments