You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: datafusion/physical-plan/src/joins/hash_join/exec.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4381,13 +4381,13 @@ mod tests {
4381
4381
// Asserting that stream-level reservation attempting to overallocate
4382
4382
assert_contains!(
4383
4383
err.to_string(),
4384
-
"Resources exhausted: Additional allocation failed for HashJoinInput[1] with top memory consumers (across reservations) as:\n HashJoinInput[1]"
4384
+
"Resources exhausted: Additional allocation failed for HashJoinInput[partition=1] with top memory consumers (across reservations) as:\n HashJoinInput[partition=1]"
4385
4385
4386
4386
);
4387
4387
4388
4388
assert_contains!(
4389
4389
err.to_string(),
4390
-
"Failed to allocate additional 120.0 B for HashJoinInput[1]"
4390
+
"Failed to allocate additional 120.0 B for HashJoinInput[partition=1]"
Copy file name to clipboardExpand all lines: datafusion/physical-plan/src/joins/nested_loop_join.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2475,7 +2475,7 @@ pub(crate) mod tests {
2475
2475
2476
2476
assert_contains!(
2477
2477
err.to_string(),
2478
-
"Resources exhausted: Additional allocation failed for NestedLoopJoinLoad[0] with top memory consumers (across reservations) as:\n NestedLoopJoinLoad[0]"
2478
+
"Resources exhausted: Additional allocation failed for NestedLoopJoinLoad[partition=0] with top memory consumers (across reservations) as:\n NestedLoopJoinLoad[partition=0]"
0 commit comments