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
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ public String property() {
public String value() {
return value;
}

@Override
public String toString() {
return "SET PROPERTY " + property + " = " + value;
}
}

/**
Expand All @@ -98,5 +103,10 @@ private RemoveProperty(String property) {
public String property() {
return property;
}

@Override
public String toString() {
return "REMOVE PROPERTY " + property;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1681,9 +1681,10 @@ private[sql] object QueryCompilationErrors extends QueryErrorsBase with Compilat
}

def unsupportedJDBCNamespaceChangeInCatalogError(changes: Seq[NamespaceChange]): Throwable = {
val changesDesc = changes.map(_.toString).mkString("; ")
new AnalysisException(
errorClass = "_LEGACY_ERROR_TEMP_1120",
messageParameters = Map("changes" -> changes.toString()))
messageParameters = Map("changes" -> changesDesc))
}

private def tableDoesNotSupportError(cmd: String, table: Table): Throwable = {
Expand Down