@@ -1940,7 +1940,9 @@ pub async fn test_analyze_operator_hierarchy() {
19401940 "Should have aggregate operator"
19411941 ) ;
19421942 assert ! (
1943- output. contains( "FilterExec" ) || output. contains( "filter" ) || output. contains( "CoalesceBatchesExec" ) ,
1943+ output. contains( "FilterExec" )
1944+ || output. contains( "filter" )
1945+ || output. contains( "CoalesceBatchesExec" ) ,
19441946 "Should have filter or coalesce operator"
19451947 ) ;
19461948
@@ -1971,7 +1973,11 @@ pub async fn test_analyze_operator_hierarchy_with_csv() {
19711973
19721974 // Register the aggregate_test_100.csv file
19731975 ctx. session_ctx ( )
1974- . register_csv ( "test_data" , "data/aggregate_test_100.csv" , CsvReadOptions :: new ( ) )
1976+ . register_csv (
1977+ "test_data" ,
1978+ "data/aggregate_test_100.csv" ,
1979+ CsvReadOptions :: new ( ) ,
1980+ )
19751981 . await
19761982 . expect ( "Failed to register CSV table" ) ;
19771983
@@ -2141,7 +2147,9 @@ pub async fn test_analyze_io_metrics_parquet_namespace() {
21412147 "Should NOT use io.json.* namespace for Parquet files"
21422148 ) ;
21432149 } else {
2144- eprintln ! ( "Note: No I/O metrics reported (expected for small datasets or registered tables)" ) ;
2150+ eprintln ! (
2151+ "Note: No I/O metrics reported (expected for small datasets or registered tables)"
2152+ ) ;
21452153 }
21462154
21472155 // Verify compute metrics are always present
@@ -2223,7 +2231,9 @@ pub async fn test_analyze_io_metrics_json_namespace() {
22232231 "Should NOT use io.parquet.* namespace for JSON files"
22242232 ) ;
22252233 } else {
2226- eprintln ! ( "Note: No I/O metrics reported (expected for small datasets or registered tables)" ) ;
2234+ eprintln ! (
2235+ "Note: No I/O metrics reported (expected for small datasets or registered tables)"
2236+ ) ;
22272237 }
22282238
22292239 // Verify compute metrics are always present
@@ -2310,7 +2320,9 @@ pub async fn test_analyze_io_metrics_arrow_namespace() {
23102320 "Should NOT use io.json.* namespace for Arrow files"
23112321 ) ;
23122322 } else {
2313- eprintln ! ( "Note: No I/O metrics reported (expected for small datasets or registered tables)" ) ;
2323+ eprintln ! (
2324+ "Note: No I/O metrics reported (expected for small datasets or registered tables)"
2325+ ) ;
23142326 }
23152327
23162328 // Verify compute metrics are always present
@@ -2321,4 +2333,3 @@ pub async fn test_analyze_io_metrics_arrow_namespace() {
23212333
23222334 fixture. shutdown_and_wait ( ) . await ;
23232335}
2324-
0 commit comments