@@ -1622,60 +1622,84 @@ trait CheckAnalysis extends PredicateHelper with LookupCatalog with QueryErrorsB
1622
1622
case RenameColumn (table : ResolvedTable , col : ResolvedFieldName , newName) =>
1623
1623
checkColumnNotExists(" rename" , col.path :+ newName, table.schema)
1624
1624
1625
- case a @ AlterColumn (table : ResolvedTable , col : ResolvedFieldName , _, _, _, _, _) =>
1626
- val fieldName = col.name.quoted
1627
- if (a.dataType.isDefined) {
1628
- val field = CharVarcharUtils .getRawType(col.field.metadata)
1629
- .map(dt => col.field.copy(dataType = dt))
1630
- .getOrElse(col.field)
1631
- val newDataType = a.dataType.get
1632
- newDataType match {
1633
- case _ : StructType => alter.failAnalysis(
1634
- " CANNOT_UPDATE_FIELD.STRUCT_TYPE" ,
1635
- Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1636
- case _ : MapType => alter.failAnalysis(
1637
- " CANNOT_UPDATE_FIELD.MAP_TYPE" ,
1638
- Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1639
- case _ : ArrayType => alter.failAnalysis(
1640
- " CANNOT_UPDATE_FIELD.ARRAY_TYPE" ,
1641
- Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1642
- case u : UserDefinedType [_] => alter.failAnalysis(
1643
- " CANNOT_UPDATE_FIELD.USER_DEFINED_TYPE" ,
1644
- Map (
1645
- " table" -> toSQLId(table.name),
1646
- " fieldName" -> toSQLId(fieldName),
1647
- " udtSql" -> toSQLType(u)))
1648
- case _ : CalendarIntervalType | _ : AnsiIntervalType => alter.failAnalysis(
1649
- " CANNOT_UPDATE_FIELD.INTERVAL_TYPE" ,
1650
- Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1651
- case _ => // update is okay
1652
- }
1653
-
1654
- // We don't need to handle nested types here which shall fail before.
1655
- def canAlterColumnType (from : DataType , to : DataType ): Boolean = (from, to) match {
1656
- case (CharType (l1), CharType (l2)) => l1 == l2
1657
- case (CharType (l1), VarcharType (l2)) => l1 <= l2
1658
- case (VarcharType (l1), VarcharType (l2)) => l1 <= l2
1659
- case _ => Cast .canUpCast(from, to)
1660
- }
1661
- if (! canAlterColumnType(field.dataType, newDataType)) {
1625
+ case AlterColumns (table : ResolvedTable , columns, specs) =>
1626
+ val groupedColumns = columns.groupBy(_.name)
1627
+ groupedColumns.collect {
1628
+ case (name, occurrences) if occurrences.length > 1 =>
1662
1629
alter.failAnalysis(
1663
- errorClass = " NOT_SUPPORTED_CHANGE_COLUMN " ,
1630
+ errorClass = " NOT_SUPPORTED_CHANGE_SAME_COLUMN " ,
1664
1631
messageParameters = Map (
1665
1632
" table" -> toSQLId(table.name),
1666
- " originName" -> toSQLId(fieldName),
1667
- " originType" -> toSQLType(field.dataType),
1668
- " newName" -> toSQLId(fieldName),
1669
- " newType" -> toSQLType(newDataType)))
1670
- }
1633
+ " fieldName" -> toSQLId(name)))
1671
1634
}
1672
- if (a.nullable.isDefined) {
1673
- if (! a.nullable.get && col.field.nullable) {
1635
+ groupedColumns.keys.foreach { name =>
1636
+ val child = groupedColumns.keys.find(child => child != name && child.startsWith(name))
1637
+ if (child.isDefined) {
1674
1638
alter.failAnalysis(
1675
- errorClass = " _LEGACY_ERROR_TEMP_2330" ,
1676
- messageParameters = Map (" fieldName" -> fieldName))
1639
+ errorClass = " NOT_SUPPORTED_CHANGE_PARENT_CHILD_COLUMN" ,
1640
+ messageParameters = Map (
1641
+ " table" -> toSQLId(table.name),
1642
+ " parentField" -> toSQLId(name),
1643
+ " childField" -> toSQLId(child.get)))
1677
1644
}
1678
1645
}
1646
+ columns.zip(specs).foreach {
1647
+ case (col : ResolvedFieldName , a @ AlterColumnSpec (_, _, _, _, _)) =>
1648
+ val fieldName = col.name.quoted
1649
+ if (a.dataType.isDefined) {
1650
+ val field = CharVarcharUtils .getRawType(col.field.metadata)
1651
+ .map(dt => col.field.copy(dataType = dt))
1652
+ .getOrElse(col.field)
1653
+ val newDataType = a.dataType.get
1654
+ newDataType match {
1655
+ case _ : StructType => alter.failAnalysis(
1656
+ " CANNOT_UPDATE_FIELD.STRUCT_TYPE" ,
1657
+ Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1658
+ case _ : MapType => alter.failAnalysis(
1659
+ " CANNOT_UPDATE_FIELD.MAP_TYPE" ,
1660
+ Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1661
+ case _ : ArrayType => alter.failAnalysis(
1662
+ " CANNOT_UPDATE_FIELD.ARRAY_TYPE" ,
1663
+ Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1664
+ case u : UserDefinedType [_] => alter.failAnalysis(
1665
+ " CANNOT_UPDATE_FIELD.USER_DEFINED_TYPE" ,
1666
+ Map (
1667
+ " table" -> toSQLId(table.name),
1668
+ " fieldName" -> toSQLId(fieldName),
1669
+ " udtSql" -> toSQLType(u)))
1670
+ case _ : CalendarIntervalType | _ : AnsiIntervalType => alter.failAnalysis(
1671
+ " CANNOT_UPDATE_FIELD.INTERVAL_TYPE" ,
1672
+ Map (" table" -> toSQLId(table.name), " fieldName" -> toSQLId(fieldName)))
1673
+ case _ => // update is okay
1674
+ }
1675
+
1676
+ // We don't need to handle nested types here which shall fail before.
1677
+ def canAlterColumnType (from : DataType , to : DataType ): Boolean = (from, to) match {
1678
+ case (CharType (l1), CharType (l2)) => l1 == l2
1679
+ case (CharType (l1), VarcharType (l2)) => l1 <= l2
1680
+ case (VarcharType (l1), VarcharType (l2)) => l1 <= l2
1681
+ case _ => Cast .canUpCast(from, to)
1682
+ }
1683
+ if (! canAlterColumnType(field.dataType, newDataType)) {
1684
+ alter.failAnalysis(
1685
+ errorClass = " NOT_SUPPORTED_CHANGE_COLUMN" ,
1686
+ messageParameters = Map (
1687
+ " table" -> toSQLId(table.name),
1688
+ " originName" -> toSQLId(fieldName),
1689
+ " originType" -> toSQLType(field.dataType),
1690
+ " newName" -> toSQLId(fieldName),
1691
+ " newType" -> toSQLType(newDataType)))
1692
+ }
1693
+ }
1694
+ if (a.nullable.isDefined) {
1695
+ if (! a.nullable.get && col.field.nullable) {
1696
+ alter.failAnalysis(
1697
+ errorClass = " _LEGACY_ERROR_TEMP_2330" ,
1698
+ messageParameters = Map (" fieldName" -> fieldName))
1699
+ }
1700
+ }
1701
+ case _ =>
1702
+ }
1679
1703
case _ =>
1680
1704
}
1681
1705
}
0 commit comments