Skip to content

Commit 94f08ff

Browse files
Update sort_merge_join.rs (apache#13894)
1 parent 6cfd1cf commit 94f08ff

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

datafusion/physical-plan/src/joins/sort_merge_join.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -304,11 +304,10 @@ impl SortMergeJoinExec {
304304
let output_partitioning =
305305
symmetric_join_output_partitioning(left, right, &join_type);
306306

307-
// TODO: Emission type may be incremental if the input is sorted
308307
PlanProperties::new(
309308
eq_properties,
310309
output_partitioning,
311-
EmissionType::Final,
310+
EmissionType::Incremental,
312311
boundedness_from_children([left, right]),
313312
)
314313
}

0 commit comments

Comments
 (0)