@@ -40,13 +40,13 @@ use std::fs::File;
4040use std:: path:: PathBuf ;
4141
4242#[ cfg( feature = "rayon" ) ]
43- use crate :: chunked:: arrow_converter:: { Slice2Arrow , MasterBuilders } ;
43+ use crate :: chunked:: arrow_converter:: { MasterBuilders , Slice2Arrow } ;
4444#[ cfg( feature = "rayon" ) ]
4545use crate :: chunked:: converter:: SampleSliceAggregator ;
4646#[ cfg( feature = "rayon" ) ]
47- use crate :: chunked:: { Converter as ChunkedConverter , Slicer , find_last_nl, line_break_len_cr} ;
48- #[ cfg( feature = "rayon" ) ]
4947use crate :: chunked:: slicer:: OldSlicer ;
48+ #[ cfg( feature = "rayon" ) ]
49+ use crate :: chunked:: { find_last_nl, line_break_len_cr, Converter as ChunkedConverter , Slicer } ;
5050use crate :: converter:: Converter ;
5151use crate :: error:: Result ;
5252use crate :: mocker:: Mocker ;
@@ -265,7 +265,7 @@ impl Cli {
265265 . with_thread_channel_capacity ( * thread_channel_capacity)
266266 . build ( ) ?
267267 . convert ( ) ?;
268- } ,
268+ }
269269 #[ cfg( feature = "rayon" ) ]
270270 Commands :: CConvert {
271271 converter,
@@ -295,7 +295,7 @@ impl Cli {
295295 masterbuilders : master_builders,
296296 } ) ;
297297 s2a
298- } ,
298+ }
299299 Converters :: None => {
300300 let _out_file = fs:: OpenOptions :: new ( )
301301 . create ( true )
@@ -320,8 +320,7 @@ impl Cli {
320320 "Operation successful inbytes={} out bytes={} num of rows={}" ,
321321 stats. bytes_in, stats. bytes_out, stats. num_rows
322322 ) ;
323-
324- } ,
323+ }
325324 Commands :: Mock {
326325 schema,
327326 out_file,
@@ -348,4 +347,4 @@ impl Cli {
348347
349348 Ok ( ( ) )
350349 }
351- }
350+ }
0 commit comments