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 a35a342 commit be006e8Copy full SHA for be006e8
datafusion/physical-plan/src/joins/hash_join/shared_bounds.rs
@@ -420,14 +420,14 @@ impl SharedBuildAccumulator {
420
let lookup_hash_expr = Arc::new(HashExpr::new(
421
self.on_right.clone(),
422
HASH_JOIN_SEED,
423
- format!("hash_join_p{}", partition_id),
+ format!("hash_join_p{partition_id}"),
424
))
425
as Arc<dyn PhysicalExpr>;
426
427
let hash_lookup_expr = Arc::new(HashTableLookupExpr::new(
428
lookup_hash_expr,
429
hash_map,
430
- format!("lookup_p{}", partition_id),
+ format!("lookup_p{partition_id}"),
431
432
433
0 commit comments