Skip to content

Commit b17f5fd

Browse files
committed
move bench
1 parent a5bda29 commit b17f5fd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

datafusion/core/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,7 @@ name = "dataframe"
244244
[[bench]]
245245
harness = false
246246
name = "spm"
247+
248+
[[bench]]
249+
harness = false
250+
name = "sort_merge_join"

datafusion/physical-plan/benches/sort_merge_join.rs renamed to datafusion/core/benches/sort_merge_join.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ use datafusion_execution::TaskContext;
2525
use datafusion_physical_expr::expressions::Column;
2626
use datafusion_physical_plan::common::collect;
2727
use datafusion_physical_plan::joins::SortMergeJoinExec;
28-
use datafusion_physical_plan::test::{build_table_i32, TestMemoryExec};
2928
use datafusion_physical_plan::ExecutionPlan;
3029
use std::sync::Arc;
3130
use tokio::runtime::Runtime;

datafusion/physical-plan/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,3 @@ name = "partial_ordering"
8686
[[bench]]
8787
harness = false
8888
name = "spill_io"
89-
90-
[[bench]]
91-
harness = false
92-
name = "sort_merge_join"

datafusion/physical-plan/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ pub mod udaf {
9292
}
9393

9494
pub mod coalesce;
95+
#[cfg(test)]
9596
pub mod test;

0 commit comments

Comments
 (0)