dongjoon-hyun commented on a change in pull request #24741: [SPARK-27322][SQL]
DataSourceV2 table relation
URL: https://github.com/apache/spark/pull/24741#discussion_r293152877
##########
File path: sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
##########
@@ -1694,8 +1694,7 @@ class SQLQuerySuite extends QueryTest with
SharedSQLContext {
e = intercept[AnalysisException] {
sql(s"select id from
`org.apache.spark.sql.sources.HadoopFsRelationProvider`.`file_path`")
}
- assert(e.message.contains("Table or view not found: " +
- "`org.apache.spark.sql.sources.HadoopFsRelationProvider`.`file_path`"))
+ assert(e.message.contains("Table or view not found"))
Review comment:
Nit. Shall we keep the original form because only backticks are gone?
```scala
assert(e.message.contains("Table or view not found: " +
"`org.apache.spark.sql.sources.HadoopFsRelationProvider`.file_path"))
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]