Description
DSv1 DDL commands respect the SQL config spark.sql.caseSensitive, for example
spark-sql> CREATE TABLE tbl1 (id bigint, data string) USING parquet PARTITIONED BY (id); spark-sql> ALTER TABLE tbl1 ADD PARTITION (ID=1); spark-sql> SHOW PARTITIONS tbl1; id=1
but the same ALTER TABLE command fails on DSv2.