Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19124#discussion_r137416501
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/command/tables.scala ---
    @@ -201,13 +201,14 @@ case class AlterTableAddColumnsCommand(
     
         // make sure any partition columns are at the end of the fields
         val reorderedSchema = catalogTable.dataSchema ++ columns ++ 
catalogTable.partitionSchema
    +    val newSchema = catalogTable.schema.copy(fields = 
reorderedSchema.toArray)
     
         SchemaUtils.checkColumnNameDuplication(
           reorderedSchema.map(_.name), "in the table definition of " + 
table.identifier,
           conf.caseSensitiveAnalysis)
    +    DDLUtils.checkDataSchemaFieldNames(catalogTable.copy(schema = 
newSchema))
    --- End diff --
    
    I think this PR passes the above two test cases, too.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to