Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions common/utils/src/main/resources/error/error-conditions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7664,6 +7664,12 @@
},
"sqlState" : "0A000"
},
"UNSUPPORTED_TABLE_CHANGE" : {
"message" : [
"Unsupported table change: <message>"
],
"sqlState" : "0A000"
},
"UNSUPPORTED_TABLE_CHANGES_IN_AUTO_SCHEMA_EVOLUTION" : {
"message" : [
"Operation could not apply the following schema changes to table <tableName> because the catalog did not support or only partially applied them: <changes>."
Expand Down Expand Up @@ -9015,11 +9021,6 @@
"<methodName> is not implemented."
]
},
"_LEGACY_ERROR_TEMP_2045" : {
"message" : [
"Unsupported table change: <message>"
]
},
"_LEGACY_ERROR_TEMP_2046" : {
"message" : [
"[BUG] Not a DataSourceRDDPartition: <split>."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ private[sql] object QueryExecutionErrors extends QueryErrorsBase with ExecutionE

def unsupportedTableChangeError(e: IllegalArgumentException): Throwable = {
new SparkException(
errorClass = "_LEGACY_ERROR_TEMP_2045",
errorClass = "UNSUPPORTED_TABLE_CHANGE",
messageParameters = Map("message" -> e.getMessage),
cause = e)
}
Expand Down