Github user gatorsmile commented on the issue:
https://github.com/apache/spark/pull/17518
@rxin This is an API change. After this PR, the following APIs will accept
the qualified table/function names.
- def listColumns(tableName: String): Dataset[Column]
- def getTable(tableName: String): Table
- def getFunction(functionName: String): Function
- def tableExists(tableName: String): Boolean
- def functionExists(functionName: String): Boolean
Before this PR, `listColumns("db1.tab")` will search a table having the
name `db1.tab`. After this PR, it will search the table having the name `tab`
in the database `db1`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]