viirya commented on code in PR #52305: URL: https://github.com/apache/spark/pull/52305#discussion_r2342473010
########## sql/core/src/test/scala/org/apache/spark/sql/DataFrameSetOperationsSuite.scala: ########## @@ -1617,6 +1617,32 @@ class DataFrameSetOperationsSuite extends QueryTest } } } + + test("SPARK-53550: union partitioning should compare canonicalized attributes") { + withSQLConf( + "spark.sql.autoBroadcastJoinThreshold" -> "-1") { + withTempView("person", "person_a", "person_b", "person_c") { + // scalastyle:off line.size.limit + sql( + """create or replace temp view person(id, name, age) as values Review Comment: Okay -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org