Github user dongjoon-hyun commented on a diff in the pull request:
https://github.com/apache/spark/pull/20659#discussion_r172589587
--- Diff:
sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
---
@@ -2513,9 +2513,9 @@ abstract class DDLSuite extends QueryTest with
SQLTestUtils {
}.getMessage
assert(e.contains("Found duplicate column(s)"))
} else {
- sql("ALTER TABLE t1 ADD COLUMNS (C1 string)")
+ sql("ALTER TABLE t1 ADD COLUMNS (C2 string)")
assert(spark.table("t1").schema ==
- new StructType().add("c1", IntegerType).add("C1",
StringType))
+ new StructType().add("c1", IntegerType).add("C2",
StringType))
--- End diff --
You are intentionally removing `case sensitive` test.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]