Skip to content

Commit

Permalink
fix logical merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed May 27, 2021
1 parent 29c767b commit 7d3dbc5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion/src/physical_plan/sort_preserving_merge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,8 @@ mod tests {
input: Arc<dyn ExecutionPlan>,
sort: Vec<PhysicalSortExpr>,
) -> RecordBatch {
let sort_exec = Arc::new(SortExec::try_new(sort.clone(), input).unwrap());
let sort_exec =
Arc::new(SortExec::new_with_partitioning(sort.clone(), input, true));
sorted_merge(sort_exec, sort).await
}

Expand Down

0 comments on commit 7d3dbc5

Please sign in to comment.