@@ -614,7 +614,7 @@ async fn loadtest_ballista(opt: BallistaLoadtestOpt) -> Result<()> {
614614 . split ( ',' )
615615 . map ( |s| s. parse ( ) . unwrap ( ) )
616616 . collect ( ) ;
617- println ! ( "query list: {:?} " , & query_list) ;
617+ println ! ( "query list: {:?} " , query_list) ;
618618
619619 let total = Instant :: now ( ) ;
620620 let mut futures = vec ! [ ] ;
@@ -636,7 +636,7 @@ async fn loadtest_ballista(opt: BallistaLoadtestOpt) -> Result<()> {
636636 . unwrap ( ) ;
637637 println ! (
638638 "Client {} Round {} Query {} started" ,
639- & client_id, & i, query_id
639+ client_id, i, query_id
640640 ) ;
641641 let start = Instant :: now ( ) ;
642642 let df = client
@@ -652,7 +652,7 @@ async fn loadtest_ballista(opt: BallistaLoadtestOpt) -> Result<()> {
652652 let elapsed = start. elapsed ( ) . as_secs_f64 ( ) * 1000.0 ;
653653 println ! (
654654 "Client {} Round {} Query {} took {:.1} ms " ,
655- & client_id, & i, query_id, elapsed
655+ client_id, i, query_id, elapsed
656656 ) ;
657657 if opt. debug && !batches. is_empty ( ) {
658658 pretty:: print_batches ( & batches) . unwrap ( ) ;
@@ -945,7 +945,7 @@ async fn convert_tbl(opt: ConvertOpt) -> Result<()> {
945945
946946 println ! (
947947 "Converting '{}' to {} files in directory '{}'" ,
948- & input_path, & opt. file_format, & output_path
948+ input_path, opt. file_format, output_path
949949 ) ;
950950 match opt. file_format . as_str ( ) {
951951 "csv" => ctx. write_csv ( csv, output_path) . await ?,
0 commit comments