Skip to content

Commit d7284e3

Browse files
committed
fmt
1 parent df44dc0 commit d7284e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

datafusion/physical-plan/src/joins/hash_join.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,8 @@ impl SharedBoundsAccumulator {
287287
#[cfg(debug_assertions)]
288288
{
289289
// Sort predicates for consistent ordering in debug builds
290-
column_predicates.sort_by_cached_key(|expr| format!("{}", fmt_sql(expr.as_ref())));
290+
column_predicates
291+
.sort_by_cached_key(|expr| format!("{}", fmt_sql(expr.as_ref())));
291292
}
292293
let partition_predicate = column_predicates
293294
.into_iter()

0 commit comments

Comments
 (0)