@@ -332,7 +332,7 @@ mod tests {
332332 let metric = get_value ( & metrics, "pushdown_rows_pruned" ) ;
333333 assert_eq ! ( metric, 3 , "Expected all rows to be pruned" ) ;
334334
335- // If we excplicitly allow nulls the rest of the predicate should work
335+ // If we explicitly allow nulls the rest of the predicate should work
336336 let filter = col ( "c2" ) . is_null ( ) . and ( col ( "c1" ) . eq ( lit ( 1_i32 ) ) ) ;
337337 let rt = RoundTrip :: new ( )
338338 . with_table_schema ( table_schema. clone ( ) )
@@ -390,7 +390,7 @@ mod tests {
390390 let metric = get_value ( & metrics, "pushdown_rows_pruned" ) ;
391391 assert_eq ! ( metric, 3 , "Expected all rows to be pruned" ) ;
392392
393- // If we excplicitly allow nulls the rest of the predicate should work
393+ // If we explicitly allow nulls the rest of the predicate should work
394394 let filter = col ( "c2" ) . is_null ( ) . and ( col ( "c1" ) . eq ( lit ( 1_i32 ) ) ) ;
395395 let rt = RoundTrip :: new ( )
396396 . with_table_schema ( table_schema. clone ( ) )
@@ -452,7 +452,7 @@ mod tests {
452452 let metric = get_value ( & metrics, "pushdown_rows_pruned" ) ;
453453 assert_eq ! ( metric, 3 , "Expected all rows to be pruned" ) ;
454454
455- // If we excplicitly allow nulls the rest of the predicate should work
455+ // If we explicitly allow nulls the rest of the predicate should work
456456 let filter = col ( "c2" ) . is_null ( ) . and ( col ( "c1" ) . eq ( lit ( 1_i32 ) ) ) ;
457457 let rt = RoundTrip :: new ( )
458458 . with_table_schema ( table_schema. clone ( ) )
@@ -514,7 +514,7 @@ mod tests {
514514 let metric = get_value ( & metrics, "pushdown_rows_pruned" ) ;
515515 assert_eq ! ( metric, 3 , "Expected all rows to be pruned" ) ;
516516
517- // If we excplicitly allow nulls the rest of the predicate should work
517+ // If we explicitly allow nulls the rest of the predicate should work
518518 let filter = col ( "c2" ) . is_null ( ) . and ( col ( "c3" ) . eq ( lit ( 7_i32 ) ) ) ;
519519 let rt = RoundTrip :: new ( )
520520 . with_table_schema ( table_schema. clone ( ) )
0 commit comments