Skip to content

Commit 6f49f29

Browse files
committed
Add clarifying comments
Signed-off-by: Andrew Lamb <[email protected]>
1 parent 9924a96 commit 6f49f29

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

sqllogictest/src/parser.rs

+14-1
Original file line numberDiff line numberDiff line change
@@ -640,10 +640,23 @@ mod tests {
640640
let records = parse_file(filename).expect("parsing to complete");
641641

642642
let unparsed = records
643-
.into_iter()
643+
.iter()
644644
.map(record_to_string)
645645
.collect::<Vec<_>>();
646646

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+
// query III
657+
// select * from foo;
658+
// ----
659+
// 1 2
647660
let output_contents = unparsed.join("\n");
648661

649662
let changeset = Changeset::new(&input_contents, &output_contents, "\n");

0 commit comments

Comments
 (0)