Skip to content

Commit 6d3f368

Browse files
committed
cargo fmt
1 parent 07a914d commit 6d3f368

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

datafusion/optimizer/src/push_down_filter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2517,8 +2517,8 @@ mod tests {
25172517
}
25182518

25192519
#[test]
2520-
fn window_over_scalar_subquery_cross_join_with_project_wrapper_keeps_filter_above_join(
2521-
) -> Result<()> {
2520+
fn window_over_scalar_subquery_cross_join_with_project_wrapper_keeps_filter_above_join()
2521+
-> Result<()> {
25222522
let left = LogicalPlanBuilder::from(test_table_scan()?)
25232523
.project(vec![col("a").alias("nation"), col("b").alias("acctbal")])?
25242524
.alias("s")?

datafusion/optimizer/src/utils.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -530,9 +530,6 @@ mod tests {
530530
}));
531531

532532
assert!(result.is_err());
533-
assert_eq!(
534-
null_restriction_eval_mode(),
535-
NullRestrictionEvalMode::Auto
536-
);
533+
assert_eq!(null_restriction_eval_mode(), NullRestrictionEvalMode::Auto);
537534
}
538535
}

0 commit comments

Comments
 (0)