cloud-fan commented on a change in pull request #31326:
URL: https://github.com/apache/spark/pull/31326#discussion_r563954392
##########
File path: sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
##########
@@ -3575,15 +3575,6 @@ class SQLQuerySuite extends QueryTest with
SharedSparkSession with AdaptiveSpark
}
})
}
-
- test("SPARK-33591: null as a partition value") {
- val t = "part_table"
- withTable(t) {
- sql(s"CREATE TABLE $t (col1 INT, p1 STRING) USING PARQUET PARTITIONED BY
(p1)")
- sql(s"INSERT INTO TABLE $t PARTITION (p1 = null) SELECT 0")
- checkAnswer(sql(s"SELECT * FROM $t"), Row(0, null))
- }
Review comment:
A simpler way is to test DROP PARTITION here.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]