cloud-fan commented on code in PR #36586:
URL: https://github.com/apache/spark/pull/36586#discussion_r891334793
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/errors/QueryCompilationErrors.scala:
##########
@@ -2185,6 +2185,11 @@ object QueryCompilationErrors extends QueryErrorsBase {
new AnalysisException(s"Table or view '$tableName' not found in database
'$dbName'")
}
+ def tableOrViewNotFound(ident: Seq[String]): Throwable = {
+ val fullName = ident.quoted
+ new AnalysisException(s"Table or view '$fullName' not found")
Review Comment:
```suggestion
new AnalysisException(s"Table or view '${ident.quoted}' not found")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]