eejbyfeldt commented on code in PR #620: URL: https://github.com/apache/datafusion-comet/pull/620#discussion_r1663002521
########## spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala: ########## @@ -2626,6 +2645,11 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim return None } + if ((join.leftKeys ++ join.rightKeys).exists(_.dataType.isInstanceOf[StructType])) { + withInfo(join, "Unsupported struct data type in join keys") + return None + } Review Comment: This is an existing issue, but because of us supporting more expressions this caused failures in one of the spark test cases. -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org