Skip to content

Commit bbdff7d

Browse files
committed
fix clippy issues
1 parent 0dde9a0 commit bbdff7d

File tree

1 file changed

+2
-4
lines changed
  • datafusion/physical-plan/src/joins/sort_merge_join

1 file changed

+2
-4
lines changed

datafusion/physical-plan/src/joins/sort_merge_join/tests.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3071,17 +3071,15 @@ fn test_partition_statistics() -> Result<()> {
30713071
assert_eq!(
30723072
stats.column_statistics.len(),
30733073
expected_cols,
3074-
"Aggregate stats failed for {:?}",
3075-
join_type
3074+
"Aggregate stats failed for {join_type:?}"
30763075
);
30773076

30783077
// Test partition-specific statistics (partition = Some(0))
30793078
let partition_stats = join_exec.partition_statistics(Some(0))?;
30803079
assert_eq!(
30813080
partition_stats.column_statistics.len(),
30823081
expected_cols,
3083-
"Partition stats failed for {:?}",
3084-
join_type
3082+
"Partition stats failed for {join_type:?}"
30853083
);
30863084
}
30873085

0 commit comments

Comments
 (0)