Skip to content

Commit

Permalink
Fix DeltaAlterTableTests
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGekk committed Sep 16, 2024
1 parent f15642e commit b101996
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ trait DeltaAlterTableTests extends DeltaAlterTableTestBase {
statement = s"ALTER TABLE $tableName CHANGE COLUMN m.value SET NOT NULL"
checkError(
exception = intercept[AnalysisException] { sql(statement) },
errorClass = "_LEGACY_ERROR_TEMP_2330",
condition = "_LEGACY_ERROR_TEMP_2330",
parameters = Map(
"fieldName" -> "m.value"
),
Expand All @@ -1405,7 +1405,7 @@ trait DeltaAlterTableTests extends DeltaAlterTableTestBase {
statement = s"ALTER TABLE $tableName CHANGE COLUMN a.element SET NOT NULL"
checkError(
exception = intercept[AnalysisException] { sql(statement) },
errorClass = "_LEGACY_ERROR_TEMP_2330",
condition = "_LEGACY_ERROR_TEMP_2330",
parameters = Map(
"fieldName" -> "a.element"
),
Expand Down

0 comments on commit b101996

Please sign in to comment.