Skip to content

Commit

Permalink
Remove the fake benchmarking slowdown
Browse files Browse the repository at this point in the history
  • Loading branch information
gruuya committed Mar 11, 2024
1 parent 5ce17b9 commit 1a5f166
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions datafusion/physical-plan/src/sorts/sort.rs
Original file line number Diff line number Diff line change
Expand Up @@ -980,9 +980,6 @@ impl ExecutionPlan for SortExec {
let batch = batch?;
sorter.insert_batch(batch).await?;
}
// Test whether benchmarks catch this
// TODO: remove before merge!
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
sorter.sort()
})
.try_flatten(),
Expand Down

0 comments on commit 1a5f166

Please sign in to comment.