mustafasrepo commented on code in PR #6956:
URL: https://github.com/apache/arrow-datafusion/pull/6956#discussion_r1264972151
##########
datafusion/core/src/physical_plan/joins/sort_merge_join.rs:
##########
@@ -295,6 +321,65 @@ impl ExecutionPlan for SortMergeJoinExec {
)
}
+ fn ordering_equivalence_properties(&self) -> OrderingEquivalenceProperties
{
+ let mut new_properties =
OrderingEquivalenceProperties::new(self.schema());
Review Comment:
Since `SymmetricHashJoin` doesn't maintain input ordering under any
circumstance (since it has alternating build sides), its ordering_equivalence
implementation should be empty.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]