Skip to content

Commit

Permalink
Remove unneeded supportedDataType guard
Browse files Browse the repository at this point in the history
  • Loading branch information
eejbyfeldt committed Aug 13, 2024
1 parent 7fac289 commit ae9c6ca
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2724,12 +2724,6 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
return None
}

val keyTypes = (join.leftKeys ++ join.rightKeys).map(_.dataType)
if (keyTypes.exists(!supportedDataType(_, allowStruct = true))) {
withInfo(join, "Unsupported data type in join keys")
return None
}

if (join.buildSide == BuildRight && join.joinType == LeftAnti) {
withInfo(join, "BuildRight with LeftAnti is not supported")
return None
Expand Down

0 comments on commit ae9c6ca

Please sign in to comment.