Skip to content
Snippets Groups Projects
Commit 548c9c2b authored by Yin Huai's avatar Yin Huai Committed by Michael Armbrust
Browse files

[SQL] Use HiveContext's sessionState in HiveMetastoreCatalog.hiveDefaultTableFilePath

`client.getDatabaseCurrent` uses SessionState's local variable which can be an issue.

Author: Yin Huai <yhuai@databricks.com>

Closes #4355 from yhuai/defaultTablePath and squashes the following commits:

84a29e5 [Yin Huai] Use HiveContext's sessionState instead of using SessionState's thread local variable.
parent 0d81645f
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,8 @@ private[hive] class HiveMetastoreCatalog(hive: HiveContext) extends Catalog with
}
def hiveDefaultTableFilePath(tableName: String): String = {
hiveWarehouse.getTablePath(client.getDatabaseCurrent, tableName).toString
val currentDatabase = client.getDatabase(hive.sessionState.getCurrentDatabase())
hiveWarehouse.getTablePath(currentDatabase, tableName).toString
}
def tableExists(tableIdentifier: Seq[String]): Boolean = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment