We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6fc32f commit e4a9b0bCopy full SHA for e4a9b0b
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala
@@ -67,7 +67,7 @@ private[hive] class HiveMetastoreCatalog(hive: HiveContext) extends Catalog with
67
val cacheLoader = new CacheLoader[QualifiedTableName, LogicalPlan]() {
68
override def load(in: QualifiedTableName): LogicalPlan = {
69
logDebug(s"Creating new cached data source for $in")
70
- val table = synchronized {
+ val table = HiveMetastoreCatalog.this.synchronized {
71
client.getTable(in.database, in.name)
72
}
73
val userSpecifiedSchema =
0 commit comments