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
5 changes: 0 additions & 5 deletions common/utils/src/main/resources/error/error-conditions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8346,11 +8346,6 @@
"A schema needs to be specified when using <className>."
]
},
"_LEGACY_ERROR_TEMP_1134" : {
"message" : [
"Unable to infer schema for <format> at <fileCatalog>. It must be specified manually."
]
},
"_LEGACY_ERROR_TEMP_1135" : {
"message" : [
"<className> is not a valid Spark SQL Data Source."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1771,11 +1771,7 @@ private[sql] object QueryCompilationErrors extends QueryErrorsBase with Compilat
}

def dataSchemaNotSpecifiedError(format: String, fileCatalog: String): Throwable = {
new AnalysisException(
errorClass = "_LEGACY_ERROR_TEMP_1134",
messageParameters = Map(
"format" -> format,
"fileCatalog" -> fileCatalog))
dataSchemaNotSpecifiedError(format)
}

def invalidDataSourceError(className: String): Throwable = {
Expand Down