File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
spark/src/main/scala/org/apache/comet/rules Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -68,11 +68,12 @@ object RewriteJoin extends JoinSelectionHelper {
6868 case smj : SortMergeJoinExec =>
6969 getSmjBuildSide(smj) match {
7070 case Some (BuildRight ) if smj.joinType == LeftAnti || smj.joinType == LeftSemi =>
71- withInfo(
72- smj,
73- s " Cannot rewrite SortMergeJoin to HashJoin: BuildRight with ${smj.joinType} is not supported " )
7471 // LeftAnti https://github.com/apache/datafusion-comet/issues/457
7572 // LeftSemi https://github.com/apache/datafusion-comet/issues/2667
73+ withInfo(
74+ smj,
75+ s " Cannot rewrite SortMergeJoin to HashJoin: " +
76+ s " BuildRight with ${smj.joinType} is not supported " )
7677 plan
7778 case Some (buildSide) =>
7879 ShuffledHashJoinExec (
You can’t perform that action at this time.
0 commit comments