Skip to content

Commit

Permalink
Adjust memory sizes in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Jan 12, 2024
1 parent 89cb067 commit 0c4a8a1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions datafusion/physical-plan/src/aggregates/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ mod tests {
))];

let task_ctx = if spill {
new_spill_ctx(2, 1500)
new_spill_ctx(2, 1600)
} else {
Arc::new(TaskContext::default())
};
Expand Down Expand Up @@ -1722,7 +1722,6 @@ mod tests {
}

#[tokio::test]
#[ignore]
async fn aggregate_source_not_yielding_with_spill() -> Result<()> {
let input: Arc<dyn ExecutionPlan> =
Arc::new(TestYieldingExec { yield_first: false });
Expand All @@ -1739,7 +1738,6 @@ mod tests {
}

#[tokio::test]
#[ignore]
async fn aggregate_source_with_yielding_with_spill() -> Result<()> {
let input: Arc<dyn ExecutionPlan> =
Arc::new(TestYieldingExec { yield_first: true });
Expand Down Expand Up @@ -1950,7 +1948,7 @@ mod tests {
spill: bool,
) -> Result<()> {
let task_ctx = if spill {
new_spill_ctx(2, 2886)
new_spill_ctx(2, 3200)
} else {
Arc::new(TaskContext::default())
};
Expand Down

0 comments on commit 0c4a8a1

Please sign in to comment.