Skip to content

Commit

Permalink
Show reason for falling back to Spark when SMJ with join condition is…
Browse files Browse the repository at this point in the history
… not enabled
  • Loading branch information
andygrove committed Sep 20, 2024
1 parent fa275f1 commit 56d321d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2976,7 +2976,10 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
if (join.condition.isDefined &&
!CometConf.COMET_EXEC_SORT_MERGE_JOIN_WITH_JOIN_FILTER_ENABLED
.get(conf)) {
withInfo(join, join.condition.get)
withInfo(
join,
s"${CometConf.COMET_EXEC_SORT_MERGE_JOIN_WITH_JOIN_FILTER_ENABLED.key} is not enabled",
join.condition.get)
return None
}

Expand Down

0 comments on commit 56d321d

Please sign in to comment.