We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dde9a0 commit bbdff7dCopy full SHA for bbdff7d
datafusion/physical-plan/src/joins/sort_merge_join/tests.rs
@@ -3071,17 +3071,15 @@ fn test_partition_statistics() -> Result<()> {
3071
assert_eq!(
3072
stats.column_statistics.len(),
3073
expected_cols,
3074
- "Aggregate stats failed for {:?}",
3075
- join_type
+ "Aggregate stats failed for {join_type:?}"
3076
);
3077
3078
// Test partition-specific statistics (partition = Some(0))
3079
let partition_stats = join_exec.partition_statistics(Some(0))?;
3080
3081
partition_stats.column_statistics.len(),
3082
3083
- "Partition stats failed for {:?}",
3084
+ "Partition stats failed for {join_type:?}"
3085
3086
}
3087
0 commit comments