We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed00e1 commit 10a4b47Copy full SHA for 10a4b47
spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala
@@ -2865,11 +2865,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
2865
case RightOuter => JoinType.RightOuter
2866
case FullOuter => JoinType.FullOuter
2867
case LeftSemi => JoinType.LeftSemi
2868
- // TODO: DF SMJ with join condition fails TPCH q21
2869
- case LeftAnti if condition.isEmpty => JoinType.LeftAnti
2870
- case LeftAnti =>
2871
- withInfo(join, "LeftAnti SMJ join with condition is not supported")
2872
- return None
+ case LeftAnti => JoinType.LeftAnti
2873
case _ =>
2874
// Spark doesn't support other join types
2875
withInfo(op, s"Unsupported join type ${join.joinType}")
0 commit comments