Skip to content

Commit be006e8

Browse files
committed
fix lints
1 parent a35a342 commit be006e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,14 +420,14 @@ impl SharedBuildAccumulator {
420420
let lookup_hash_expr = Arc::new(HashExpr::new(
421421
self.on_right.clone(),
422422
HASH_JOIN_SEED,
423-
format!("hash_join_p{}", partition_id),
423+
format!("hash_join_p{partition_id}"),
424424
))
425425
as Arc<dyn PhysicalExpr>;
426426

427427
let hash_lookup_expr = Arc::new(HashTableLookupExpr::new(
428428
lookup_hash_expr,
429429
hash_map,
430-
format!("lookup_p{}", partition_id),
430+
format!("lookup_p{partition_id}"),
431431
))
432432
as Arc<dyn PhysicalExpr>;
433433

0 commit comments

Comments
 (0)