File tree Expand file tree Collapse file tree
datafusion/core/src/datasource Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -593,14 +593,14 @@ mod tests {
593593 | col1 | col2 |
594594 +-------+-----------------------------+
595595 | 1 | hello
596- world |
596+ | | world |
597597 | 2 | something
598- else |
598+ | | else |
599599 | 3 | many
600- lines
601- make
602- good test
603- |
600+ | | lines
601+ | | make
602+ | | good test
603+ | |
604604 | 4 | unquoted |
605605 | value | end |
606606 +-------+-----------------------------+
Original file line number Diff line number Diff line change @@ -536,7 +536,6 @@ mod tests {
536536 async fn test_json_with_repartitioning (
537537 file_compression_type : FileCompressionType ,
538538 ) -> Result < ( ) > {
539- use datafusion_common:: test_util:: batches_to_sort_string;
540539 use datafusion_execution:: config:: SessionConfig ;
541540
542541 let config = SessionConfig :: new ( )
@@ -580,7 +579,7 @@ mod tests {
580579 let df = ctx. read_json ( path, read_option) . await ?;
581580 let res = df. collect ( ) . await ?;
582581
583- insta:: allow_duplicates! { assert_snapshot!( batches_to_sort_string ( & res) , @r###"
582+ insta:: allow_duplicates! { assert_snapshot!( batches_to_string ( & res) , @r###"
584583 +-----+------------------+---------------+------+
585584 | a | b | c | d |
586585 +-----+------------------+---------------+------+
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ mod tests {
4848
4949 insta:: assert_snapshot!( batches_to_string( & results) , @r###"
5050 +---+
51- | b |
52- +---+
53- | 2 |
51+ | b |
52+ +---+
53+ | 2 |
5454 +---+
5555 "### ) ;
5656
You can’t perform that action at this time.
0 commit comments